Installer: Windows 7: Check for installed KB4474419

This commit is contained in:
Nodir Temirkhodjaev 2023-12-20 16:00:15 +03:00
parent 9e69a91850
commit 82c4974f90
11 changed files with 47 additions and 0 deletions

View File

@ -140,6 +140,35 @@ begin
Result := (Version.Major > 10) or ((Version.Major = 10) and (Version.Build > 19040)); Result := (Version.Major > 10) or ((Version.Major = 10) and (Version.Build > 19040));
end; end;
function IsWindows7(): Boolean;
var
Version: TWindowsVersion;
begin
GetWindowsVersionEx(Version);
Result := (Version.Major = 6) and (Version.Minor = 1);
end;
function IsUpdateInstalled(KB: String): Boolean;
var
UpdateSession: Variant;
UpdateSearcher: Variant;
SearchResult: Variant;
I: Integer;
begin
UpdateSession := CreateOleObject('Microsoft.Update.Session');
UpdateSearcher := UpdateSession.CreateUpdateSearcher();
SearchResult := UpdateSearcher.Search('IsInstalled=1');
for I := 0 to SearchResult.Updates.Count - 1 do
begin
if SearchResult.Updates.Item(I).KBArticleIDs.Item(0) = KB then
begin
Result := true;
Exit;
end;
end;
Result := false;
end;
function HVCIEnabled(): Boolean; function HVCIEnabled(): Boolean;
var var
EnabledValue: Cardinal; EnabledValue: Cardinal;
@ -292,6 +321,14 @@ begin
begin begin
SuppressibleMsgBox(ExpandConstant('{cm:NotCompatibleWithWindows}'), mbCriticalError, MB_OK, IDOK); SuppressibleMsgBox(ExpandConstant('{cm:NotCompatibleWithWindows}'), mbCriticalError, MB_OK, IDOK);
Result := False;
Exit;
end;
#else
if IsWindows7() and not IsUpdateInstalled('4474419') then
begin
SuppressibleMsgBox(ExpandConstant('{cm:NotCompatibleWithWindows7}'), mbCriticalError, MB_OK, IDOK);
Result := False; Result := False;
Exit; Exit;
end; end;

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=ȷ
UninstallPasswordCancel=取消 UninstallPasswordCancel=取消
WrongPassword=密码错误 WrongPassword=密码错误
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=这个程序与HVCI核心隔离不兼容。 NotCompatibleWithHVCI=这个程序与HVCI核心隔离不兼容。
IsDeleteData=您希望删除配置文件和数据文件吗? IsDeleteData=您希望删除配置文件和数据文件吗?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Отмена UninstallPasswordCancel=Отмена
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=Эта программа несовместима с версией Windows (требуется Windows 10 2004 или новее). NotCompatibleWithWindows=Эта программа несовместима с версией Windows (требуется Windows 10 2004 или новее).
NotCompatibleWithWindows7=Эта программа несовместима с версией Windows 7 (требуется KB4474419).
NotCompatibleWithHVCI=Эта программа несовместима с HVCI (Core Isolation). NotCompatibleWithHVCI=Эта программа несовместима с HVCI (Core Isolation).
IsDeleteData=Удалить настройки и файлы данных? IsDeleteData=Удалить настройки и файлы данных?

View File

@ -14,5 +14,6 @@ UninstallPasswordOK=OK
UninstallPasswordCancel=Cancel UninstallPasswordCancel=Cancel
WrongPassword=Wrong password WrongPassword=Wrong password
NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required). NotCompatibleWithWindows=This program is not compatible with Windows version (Windows 10 2004 or newer required).
NotCompatibleWithWindows7=This program is not compatible with Windows 7 version (KB4474419 required).
NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation). NotCompatibleWithHVCI=This program is not compatible with HVCI (Core Isolation).
IsDeleteData=Delete config & data files? IsDeleteData=Delete config & data files?