내가 샘플 스크립트를 작성
및 the related blog post,
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;
귀하의 installshiled 기반 설치도 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\
에 GUID를 기반으로 하위 트리를 삽입해야합니다, 당신은 이전에 설치된 소프트웨어를 감지 할 수있는 레지스트리를 조회해야한다는 매우 분명했다 그래서 거기에 있었던 것을 분석하고 제거하기 위해 필요한 조치를 취하십시오.
A more recent blog post can be found here. 답변에 코드가 이노 설치 프로그램 설치 이전 버전을 제거하는 동안
Inno Setup은 VS 2017에 직접 통합 될 수 있습니다 (ISLE 대체품으로). 이 확장 프로그램을 보시려면 https://marketplace.visualstudio.com/items?itemName=unSignedsro.VisualInstaller (자기 프로모션이 아쉽습니다) – Slappy
Inno Setup 부분은 말할 수 없지만 설치된 제품의 제품을 찾기위한 원시 C++ API UpgradeCode의 코드는 [MsiEnumRelatedProducts] (https://msdn.microsoft.com/en-us/library/windows/desktop/aa370103)입니다. –
FWIW, ISLE은 할 수있는 일이 제한되어 있으므로 Windows Installer XML로 마이그레이션하는 것이 매우 쉽습니다. 특히 IsWiX를 사용한 경우. –