Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Note that as mlaan said there is not normally any need to do this with an Inno based setup unless you're upgrading from a non Inno version. – Deanna Jul 31 '12 at 12:17
Deanna: it depends on the case. For some programs with automatic plugin systems, which read anything in a folder, removal of old files is an absolute must when installing a new version, and simply running the uninstall is usually the cleanest way to do this. – Nyerguds Apr 3 at 7:02

7 Answers

up vote 12 down vote accepted

You should be able to read the uninstall string from the registry, given the AppId (i.e. the value you used for AppID in the [Setup]-section). It could be found under Software\Microsoft\Windows\CurrentVersion\Uninstall\{AppId}\ (could be either HKLM or HKCU, so best check both) where {AppId} should be substituted with the actual value you used. Look for the UninstallString or QuietUninstallString values and use the Exec function to run it from your InitializeSetup() event function.

Update: removed non-working alternative solution using a [Run]-section entry with {uninstallexe} - thanks to all commenters who pointed this out!

share|improve this answer
+1, but definitely use scripting to read the old uninstaller name, because otherwise it won't work if a different path has been entered by the user. – mghie Jan 8 '10 at 5:07
3  
I don't think the [Run] section solution will work, because it runs too late in the installation process. From Inno Setup manual: The [Run] section is optional, and specifies any number of programs to execute after the program has been successfully installed, but before the Setup program displays the final dialog. – Craig McQueen Jan 20 '10 at 8:09
Please edit this post and remove the [Run] part, it does not work. The second part works though. Thank you :-) – frgtn Apr 11 '11 at 9:24
Don't even think about doing this from InitializeSetup. PrepareToInstall is the correct place. (But not doing it at all is the best solution.) – Miral Jul 17 '12 at 9:15
1  
Is there an example code that can be provided? – Mallow Sep 11 '12 at 19:13

I have used the following. I'm not sure it's the simplest way to do it but it works.

This uses {#emit SetupSetting("AppId")} which relies on the Inno Setup Preprocessor. If you don't use that, cut-and-paste your App ID in directly.

/////////////////////////////////////////////////////////////////////
function GetUninstallString(): String;
var
  sUnInstPath: String;
  sUnInstallString: String;
begin
  sUnInstPath := ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#emit SetupSetting("AppId")}_is1');
  sUnInstallString := '';
  if not RegQueryStringValue(HKLM, sUnInstPath, 'UninstallString', sUnInstallString) then
    RegQueryStringValue(HKCU, sUnInstPath, 'UninstallString', sUnInstallString);
  Result := sUnInstallString;
end;


/////////////////////////////////////////////////////////////////////
function IsUpgrade(): Boolean;
begin
  Result := (GetUninstallString() <> '');
end;


/////////////////////////////////////////////////////////////////////
function UnInstallOldVersion(): Integer;
var
  sUnInstallString: String;
  iResultCode: Integer;
begin
// Return Values:
// 1 - uninstall string is empty
// 2 - error executing the UnInstallString
// 3 - successfully executed the UnInstallString

  // default return value
  Result := 0;

  // get the uninstall string of the old app
  sUnInstallString := GetUninstallString();
  if sUnInstallString <> '' then begin
    sUnInstallString := RemoveQuotes(sUnInstallString);
    if Exec(sUnInstallString, '/SILENT /NORESTART /SUPPRESSMSGBOXES','', SW_HIDE, ewWaitUntilTerminated, iResultCode) then
      Result := 3
    else
      Result := 2;
  end else
    Result := 1;
end;

/////////////////////////////////////////////////////////////////////
procedure CurStepChanged(CurStep: TSetupStep);
begin
  if (CurStep=ssInstall) then
  begin
    if (IsUpgrade()) then
    begin
      UnInstallOldVersion();
    end;
  end;
end;

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.

share|improve this answer
2  
Tested and confirmed to work. Using it in my solution. – soupagain May 17 '10 at 20:15
2  
thanks for referring to my blog post. The full sample for that post is available here, code.google.com/p/lextudio/source/browse/trunk/trunk/setup/… – Lex Li Mar 7 '11 at 6:38
The only thing missing here is support for an Uninstall-entry under HKCU instead of HKLM. – Oliver Giesen Apr 11 '11 at 13:02
May I suggest adding the ability to uninstall if any user installed the application, particularly if the current user is an Administrator? ... UserSIDs: TArrayOfString; I: Integer; ... if not RegQueryStringValue(HKCU, sUnInstPath, 'UninstallString', sUnInstallString) then if isAdminLoggedOn() and RegGetSubkeyNames( HKEY_USERS, '', UserSIDs ) then for I := 0 to GetArrayLength( UserSIDs ) - 1 do begin if RegQueryStringValue( HKEY_USERS, UserSIDs[I] + '\' + sUnInstPath, 'UninstallString', sUnInstallString ) then break; end; – Terrance Oct 12 '12 at 15:04

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.

share|improve this answer
Our program got a change in structure, so old version need to be uninstalled. – Vimvq1987 Jun 2 '10 at 7:26
2  
No it doesnt, you can add entries to your script to handle the structure change during an update. – mlaan Jun 10 '10 at 14:15

The answer provided by Craig McQueen is totally viable. Although, I would add those comments:

  • The {#emit SetupSetting("AppId")} code does not work for me, so I just add my App ID.
  • I didn't want to execute my uninstallation program, because I have a INI config file stored in the AppData/ folder which is removed by the uninstaller, and I don't want it to be erased when installing a new version. So, I modified a bit the code provided by Craig McQueen to remove the directory where is installed the program, after retrieving its path.

So, regarding the code of Craig McQueen, changes are:

  • Retrieve the InstallLocation key instead of the UninstallString key.
  • Use the DelTree function instead of the Exec(sUnInstallString, ...)
share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
1  
[UninstallRun] is not a solution for the question. – Craig McQueen Jul 4 '11 at 2:08

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

share|improve this answer
1  
MSIEXEC only works for MSI package. That does not apply to Inno Setup. – Lex Li Mar 9 '11 at 9:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.