gpt4 book ai didi

installation - 创新设置: How to automatically uninstall previous installed version?

转载 作者:行者123 更新时间:2023-12-03 05:11:15 27 4
gpt4 key购买 nike

我正在使用 Inno Setup 创建安装程序。

我希望安装程序自动卸载以前安装的版本,而不是覆盖它。我怎样才能做到这一点?

最佳答案

我使用过以下内容。我不确定这是最简单的方法,但它确实有效。

这使用依赖于 Inno Setup 预处理器的 {#emit SetupSetting("AppId")}。如果您不使用它,请直接剪切并粘贴您的应用程序 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;

替代方案

另请参阅this blog post "Inno Setup Script Sample for Version Comparison"它更进一步,读取任何以前安装的版本的版本号,并将该版本号与当前安装包的版本号进行比较。

关于installation - 创新设置: How to automatically uninstall previous installed version?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2000296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com