我已经安装了一个 java 应用程序,我想在同一位置重新安装新的更新。但我无法读取安装软件的位置。
I want if the full application is being installed in d:/program files then
the new setup should also be installed to the same location
我已经安装了一个 java 应用程序,我想在同一位置重新安装新的更新。但我无法读取安装软件的位置。
I want if the full application is being installed in d:/program files then
the new setup should also be installed to the same location
主应用安装脚本
[Setup]
AppId=MyMainApplicationId
AppName=MyApplicationName
AppVersion=MyApplicationVersion
更新安装脚本
[Setup]
AppId=MyMainApplicationId
AppName=MyUpdateName
AppVersion=MyUpdateVersion
由于两个 installscripts 都相同AppId
,更新将使用与主应用程序相同的目录。但是...如果安装了主应用程序,您应该执行检查以查找。您可以尝试将其[Code]
放在更新安装脚本中:
[Code]
function InitializeSetup: Boolean;
var
sUnInstallString: String;
begin
if RegValueExists(HKEY_LOCAL_MACHINE,
'Software\Microsoft\Windows\CurrentVersion\Uninstall\MyMainApplicationId_is1',
'UninstallString') then
begin
Result := True;
end
else begin
MsgBox('Main Application was not found!', mbInformation, MB_OK);
Result := False;
Exit;
end;
end;