如果机器上已经安装了应用程序,如何在使用 Inno Setup 安装时显示通知消息?

问题描述 投票:0回答:2

我是 Inno Setup 的新手。我正在使用 Inno Setup compiler-5.1.6 为我的 C# 应用程序创建一个安装程序。

使用我的脚本创建了一个安装程序,并且运行良好。它会安装该应用程序,也可以从控制面板卸载。

但我的问题是,如果我的应用程序已安装在我的计算机上,并且我尝试再次安装它,则它会在没有任何消息的情况下安装。它取代了旧的安装。

所以我的要求是,如果应用程序已安装,它应该向我显示一条消息“应用程序已安装{现有版本}。您要替换现有安装吗?”带有“是”和“否”按钮。如果用户单击“是”按钮,安装程序应正常进行,否则应退出安装向导而不进行新安装。

AppVersion:随着版本的增加而变化。

AppId:所有版本都保持不变。

所以,请有人帮助我实现上述目标.. 提前致谢 。 。

installation inno-setup
2个回答
1
投票

请参考我的问题如果在执行之前取消旧版软件的卸载,如何终止安装程序?,您可以使用与检查注册表相同的技巧来检查您的应用程序是否已安装。

要检查应用程序的版本,您可以使用我从 https://blog.lextudio.com/2007/08/inno-setup-script-sample-for-version-comparison-2/:

获得的以下代码
[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;
begin
  if RegKeyExists(HKEY_LOCAL_MACHINE,'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{F768F6BA-F164-4599-BC26-DCCFC2F76855}_is1') then
  begin
    RegQueryStringValue(HKEY_LOCAL_MACHINE,'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{F768F6BA-F164-4599-BC26-DCCFC2F76855}_is1','DisplayVersion', oldVersion);
    if (CompareVersion(oldVersion, '6.0.0.1004') < 0) then
    begin
      if MsgBox('Version ' + oldVersion + ' of Code Beautifier Collection 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\{F768F6BA-F164-4599-BC26-DCCFC2F76855}_is1','UninstallString', uninstaller);
          ShellExec('runas', uninstaller, '/SILENT', '', SW_HIDE, ewWaitUntilTerminated, ErrorCode);
          Result := True;
      end;
    end
    else
    begin
      MsgBox('Version ' + oldVersion + ' of Code Beautifier Collection is already installed. This installer will exit.',mbInformation, MB_OK);
      Result := False;
    end;
  end
  else
  begin
    Result := True;
  end;
end;

-1
投票

GetNumber 函数仅返回“主要”版本。 要应用完整版本比较,您必须连接主要版本和次要版本部分。

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));
      insert(temp, part, pos1);
      Result := StrToInt(part);
    end;
end;
© www.soinside.com 2019 - 2024. All rights reserved.