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
No known key found for this signature in database
GPG Key ID: 02C30AE90FAE4A6F
1 changed files with 2 additions and 2 deletions

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);