diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-09 01:00:40 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-16 15:18:48 +0100 |
commit | 0d92195c91ec07f2a72d4e4c952bfff672983fa3 (patch) | |
tree | 082fb19dfe65cca26848271b8a421cc0e5618de8 /src/SetupDLL/Setup.c | |
parent | b0c4ac6a9064b7890b86c72ce4d7242501579f81 (diff) | |
download | VeraCrypt-0d92195c91ec07f2a72d4e4c952bfff672983fa3.tar.gz VeraCrypt-0d92195c91ec07f2a72d4e4c952bfff672983fa3.zip |
Windows MSI: set minimum support for MSI installation to Windows 8 as it was before
Diffstat (limited to 'src/SetupDLL/Setup.c')
-rw-r--r-- | src/SetupDLL/Setup.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/SetupDLL/Setup.c b/src/SetupDLL/Setup.c index 157ab323..4aec04f9 100644 --- a/src/SetupDLL/Setup.c +++ b/src/SetupDLL/Setup.c @@ -2249,14 +2249,6 @@ BOOL InitDll (MSIHANDLE hInstaller) SetUnhandledExceptionFilter (ExceptionHandler); _set_invalid_parameter_handler (InvalidParameterHandler); RemoteSession = GetSystemMetrics (SM_REMOTESESSION) != 0; - - // OS version check: from version 1.25, only Windows XP, Windows 10 and Windows 11 are supported because of new driver signing requirements - if (!IsOSVersionAtLeast(WIN_10, 0)) - { - MSILogAndShow (hInstaller, MSI_ERROR_LEVEL, GetString("UNSUPPORTED_OS")); - bOK = FALSE; - goto end; - } end: MSILog(hInstaller, MSI_INFO_LEVEL, L"End InitDll"); |