0
votes
0answers
10 views

Removing the Oracle Instance details from windows machine [migrated]

Actually, I have installed the Oracle 11g Version 1 in my machine. After that instead of using universal installer for uninstallation manually I had removed the files from installed location. Now, ...
0
votes
0answers
42 views

MSI - Uninstall a deleted Program Folder with CustomActions that set InstallerClass=true

I had a MSI Project with CustomAction hat set InstallerClass=true [RunInstaller(true)] public class InstallerClass : System.Configuration.Install.Installer { public InstallerClass() : ...
2
votes
1answer
49 views

Upgrading one product but not the other when both products have the same upgrade code

I have two products installed. They have the same version number and upgrade code, but different product code. I would like to do a major upgrade on one of these products, but the upgrade exe that I ...
0
votes
1answer
225 views

Android application install/uninstall event

There is an application and it needs system reboot after installation. I registrered boot receiver and write info to system log. And activity checks for this line. It works well, but there is one ...
3
votes
2answers
229 views

Too many different Python versions on my system and causing problems

During the past years, I have installed many Python libraries with various Python versions. To make them ready to work immediately, I installed them blindly without control. Currently they're causing ...
1
vote
1answer
79 views

reading data from zip file in install shield

I am creating installer for my data files,The data files are present inside the zip folder,I want that whenever user clicks on installer the data files inside the zip should be extracted to specified ...
3
votes
1answer
56 views

Accidently uninstalled mysql server [closed]

I am using Centos. On a production server, it seems, we accidently uninstalled mysql server We still see folders of our DBs in /var/mysql What can we do to recover all our data. Please be sure ...
2
votes
1answer
321 views

Is it safe to uninstall VS Express after installing VS Ultimate?

A couple of days ago, I installed Visual Studio Express for C#; yesterday I installed Visual Studio Ultimate. Since I will no longer use the former, is it safe to uninstall it?
0
votes
0answers
34 views

Removing the version of solution file that does not work

I modified a project built using visual c++, windows services and installation project and installed it on my computer but it is not working properly. I can't uninstall it again as I get an error that ...
0
votes
2answers
4k views

Installshield Silent Uninstall not working at Command Line

We have an older app from 2006 we'd like to uninstall at the command line using group policy, but I can't get a silent uninstall to work. This works. Of course I need to click Next to uninstall: ...
1
vote
1answer
230 views

How to create uninstall key only on full install with inno setup?

I am writing an inno setup installer for my app. I want this installer to function both as a full installer and as an update depending on this if my app is already installed. I was able to create an ...
0
votes
2answers
679 views

WIX: writing a permanent registry key but erase the value when uninstalling

I have such a scenario for our installer project using WIX 3.6: we want to create a registry key in the installation(if this one does not already exist), write a string value with version number. In ...
12
votes
2answers
2k views

Chocolatey Uninstall Package

The Chocolatey package manager supports silent installations via the command below. It doesn't seem to have an uninstall command. cinst install packagename Is there a way to uninstall an ...
0
votes
1answer
470 views

What is “pointer” (PVOID) data type equivalence in Inno Setup

I'm trying to use the RegSetKeySecurity() function of Windows API, but the pSecurityDescriptor parameter is a pointer. What is "pointer" (PVOID) data type equivalence in Inno Setup? Thanks in advance ...
2
votes
1answer
1k views

Change WizardSmallBitmapImage in Inno Setup Uninstaller

In installer, you can easily change the small bitmap in wizard's top right corner using this code: [Setup] WizardSmallImageFile=gfx\bitmap.bmp Hovewer, how to change that same bitmap in ...
2
votes
3answers
7k views

How to completely remove Python from a Windows machine?

I installed both Python 2.7 and Python 2.6.5. I don't know what went wrong, but nothing related to Python seems to work any more. e.g. "setup.py install" for certain packages don't recognize the ...
0
votes
1answer
2k views

Cannot Uninstall or Repair Visual Studio 2010..I get “operation cannot be completed” error!

I get "operation cannot be completed" error when i tried repair or uninstall visual studio 2010 RC1...I tried restarting my computer and doing it couple of times...but it just does not let me do an ...
1
vote
1answer
357 views

Check firebird databases present

Our software installer install firebird if it is not present on the system and, as we are pursuing Win certificate the uninstaller should remove it but, we want to make sure that even if it was the ...
1
vote
1answer
625 views

NSIS Uninstaller Working Directory

I am using NSIS to create my installers/uninstallers, and the uninstaller seems to have a weird behavior. I don't put the installer in $INSTDIR, it is located at $INSTDIR/subdir/uninstall.exe (it's a ...
3
votes
2answers
117 views

Why use a Package Installer with your Macintosh App?

Why is it that some Mac Apps are perfectly happy to be simply copied into the /Applications folder, and others require installation-wizard software? Are there advantages to the wizards?
1
vote
2answers
2k views

Problem to install MSI via msiexec /i .. /qn

I'm working on a MSI file which is able to install 2 tools. Both tools are installed from an exe file but which are able to be launched silently with arguments like /SI I can built the project without ...
122
votes
6answers
45k views

python setup.py uninstall

I have installed a python package with python setup.py install. How do I uninstall it?
2
votes
4answers
5k views

Hide the uninstaller in Add/Remove Programs?

I am creating windows installer project using Visual Studio 2005. Is there an option make it so that my project does NOT have an uninstall option in Add/Remove programs? One of my customers has ...