我正在使用Inno Setup创建安装程序。
我希望安装程序自动卸载以前安装的版本,而不是覆盖它。我怎样才能做到这一点?
我正在使用Inno Setup创建安装程序。
我希望安装程序自动卸载以前安装的版本,而不是覆盖它。我怎样才能做到这一点?
Answers:
给定AppId(即您AppID
在[Setup]
-section中使用的值),您应该能够从注册表中读取卸载字符串。可以在Software\Microsoft\Windows\CurrentVersion\Uninstall\{AppId}\
(可以是HKLM
或HKCU
,因此最好同时检查两者)下{AppId}
找到,该位置应替换为您使用的实际值。查找UninstallString
或QuietUninstallString
值,然后使用该Exec
函数从InitializeSetup()
事件函数中运行它。
更新:感谢所有指出此问题的评论者,使用带有[Run]
-section项的{uninstallexe}
-删除了无效的替代解决方案!
[Run]
部分解决方案不起作用,因为它在安装过程中运行得太晚了。在Inno Setup手册中:[Run]部分是可选的,它指定成功安装程序之后但安装程序显示最终对话框之前要执行的任何数量的程序。
我已经使用了以下内容。我不确定这是最简单的方法,但是它可以工作。
这使用{#emit SetupSetting("AppId")}
依赖于Inno Setup预处理器。如果您不使用它,请直接将您的App ID剪切并粘贴。
[Code]
{ ///////////////////////////////////////////////////////////////////// }
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;
备择方案
另请参阅此博客文章“用于版本比较的Inno安装脚本示例”,该文章进一步进行了一步,读取了以前安装的任何版本的版本号,并将该版本号与当前安装软件包的版本号进行比较。
... 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;
如果您“只是想删除旧图标”(因为您的图标已更改/更新),则可以使用以下命令:
; attempt to remove previous versions' icons
[InstallDelete]
Type: filesandordirs; Name: {group}\*;
这是在“安装开始时”运行的,因此基本上删除了旧图标,并且完全完成后,新图标仍将安装在该图标中。
我只是在每次安装时都这样做,以防万一发生任何更改(无论如何都将重新安装)。
使用Inno Setup时,没有理由卸载以前的版本,除非该版本是由其他安装程序安装的。否则,升级将自动处理。
[InstallDelete]
部分来删除旧文件/目录。然后在安装过程中将新文件放置在正确的位置。
Craig McQueen提供的答案是完全可行的。虽然,我会添加以下评论:
{#emit SetupSetting("AppId")}
代码对我不起作用,因此我只添加了我的App ID。因此,对于Craig McQueen的代码,更改如下:
InstallLocation
密钥而不是UninstallString
密钥。DelTree
功能代替Exec(sUnInstallString, ...)
对于使用上述GetUninstallString()
建议强制进行内部卸载CurStepChanged()
并有磁盘缓存问题的任何人,请参见下文以了解相关的解决方案,该解决方案实际上在取消定向后会等待一段时间才能删除卸载程序exe!
我编辑了@Crain Mc-Queen代码,我认为此代码更好,因为不需要在其他项目中进行修改:
[Code]
function GetNumber(var temp: String): Integer;
var
part: String;
pos1: Integer;
begin
if Length(temp) = 0 then
begin
Result := -1;
Exit;
end;
pos1 := Pos('.', temp);
if (pos1 = 0) then
begin
Result := StrToInt(temp);
temp := '';
end
else
begin
part := Copy(temp, 1, pos1 - 1);
temp := Copy(temp, pos1 + 1, Length(temp));
Result := StrToInt(part);
end;
end;
function CompareInner(var temp1, temp2: String): Integer;
var
num1, num2: Integer;
begin
num1 := GetNumber(temp1);
num2 := GetNumber(temp2);
if (num1 = -1) or (num2 = -1) then
begin
Result := 0;
Exit;
end;
if (num1 > num2) then
begin
Result := 1;
end
else if (num1 < num2) then
begin
Result := -1;
end
else
begin
Result := CompareInner(temp1, temp2);
end;
end;
function CompareVersion(str1, str2: String): Integer;
var
temp1, temp2: String;
begin
temp1 := str1;
temp2 := str2;
Result := CompareInner(temp1, temp2);
end;
function InitializeSetup(): Boolean;
var
oldVersion: String;
uninstaller: String;
ErrorCode: Integer;
vCurID :String;
vCurAppName :String;
begin
vCurID:= '{#SetupSetting("AppId")}';
vCurAppName:= '{#SetupSetting("AppName")}';
//remove first "{" of ID
vCurID:= Copy(vCurID, 2, Length(vCurID) - 1);
//
if RegKeyExists(HKEY_LOCAL_MACHINE,
'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + vCurID + '_is1') then
begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,
'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + vCurID + '_is1',
'DisplayVersion', oldVersion);
if (CompareVersion(oldVersion, '{#SetupSetting("AppVersion")}') < 0) then
begin
if MsgBox('Version ' + oldVersion + ' of ' + vCurAppName + ' is already installed. Continue to use this old version?',
mbConfirmation, MB_YESNO) = IDYES then
begin
Result := False;
end
else
begin
RegQueryStringValue(HKEY_LOCAL_MACHINE,
'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' + vCurID + '_is1',
'UninstallString', uninstaller);
ShellExec('runas', uninstaller, '/SILENT', '', SW_HIDE, ewWaitUntilTerminated, ErrorCode);
Result := True;
end;
end
else
begin
MsgBox('Version ' + oldVersion + ' of ' + vCurAppName + ' is already installed. This installer will exit.',
mbInformation, MB_OK);
Result := False;
end;
end
else
begin
Result := True;
end;
end;
我肯定错过了什么。在删除旧安装之前,将新文件复制到目标目录。 然后,卸载程序将其删除并删除目录。
不要使用[Run]部分,而要使用[UninstallRun]。实际上,[Run]下的程序会在安装后执行,导致安装后立即卸载程序:-| 而是在安装之前评估[UninstallRun]部分。
[UninstallRun]
不是这个问题的解决方案。
请点击以下链接:http : //news.jrsoftware.org/news/innosetup/msg55323.html
在InitializeSetup()函数中,您可以在用户提示卸载旧的旧版本后调用“ MSIEXEC / x {您的程序ID}”