1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: Set minimal supported version to Windows 8 since our driver is now signed only SHA256

This commit is contained in:
Mounir IDRASSI
2021-08-29 15:19:10 +02:00
parent 78c2fe2562
commit d33c5b6f08

View File

@@ -3206,8 +3206,8 @@ void InitApp (HINSTANCE hInstance, wchar_t *lpszCommandLine)
RemoteSession = GetSystemMetrics (SM_REMOTESESSION) != 0;
// OS version check
if (CurrentOSMajor < 5)
// OS version check: from version 1.25, only Windows 8 and newer is supported
if (!IsOSVersionAtLeast(WIN_8, 0))
{
MessageBoxW (NULL, GetString ("UNSUPPORTED_OS"), lpszTitle, MB_ICONSTOP);
exit (1);