I'm using InnoSetup to create installer. I want the installer to automatically uninstall the previous installed version, instead of overwriting it. How can I do that?
|
|
You should be able to read the uninstall string from the registry, given the AppId (i.e. the value you used for Update: removed non-working alternative solution using a |
|||||||||||||||
|
|
I have used the following. I'm not sure it's the simplest way to do it but it works. This uses
Alternatives See also this blog post "Inno Setup Script Sample for Version Comparison" which goes one step further, and reads the version number of any previously installed version, and compares that version number with that of the current installation package. |
|||||||||||||
|
|
When using Inno Setup, there's no reason to uninstall a previous version unless that version was installed by a different installer program. Otherwise upgrades are handled automatically. |
|||
|
The answer provided by Craig McQueen is totally viable. Although, I would add those comments:
So, regarding the code of Craig McQueen, changes are:
|
|||
|
|
|
You can exec an uninstaller in the [code] section. You have to figure out how to get the path to the existing uninstaller. For simplicity when I install my apps I add a registry string value that points to the folder containing the uninstaller, and just exec the uninstaller in the InitializeWizard callback. Keep in mind that Inno setup uninstaller names are all of the form uninsnnn.exe, you need to take that into account in your code. |
|||
|
|
|
Do not use the [Run] section, but the [UninstallRun]. Infact, the program under [Run] are executed after the installation, causing to uninstall your program immediately after the installation :-| Instead, the [UninstallRun] section is evaluated before the installation. |
|||||
|
|
Follow this link: http://news.jrsoftware.org/news/innosetup/msg55323.html In InitializeSetup() function, you can call "MSIEXEC /x {your program ID}" after user prompt to uninstall old old version |
|||||
|