Changeset 95037 in vbox for trunk/src/VBox/Installer/win/InstallHelper
- Timestamp:
- May 18, 2022 2:23:26 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151491
- Location:
- trunk/src/VBox/Installer/win/InstallHelper
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r93343 r95037 431 431 432 432 VBoxSetMsiProp(hModule, L"VBOX_PYTHON_DEPS_INSTALLED", dwErr == ERROR_SUCCESS ? L"1" : L"0"); 433 return ERROR_SUCCESS; /* Never return failure. */ 434 } 435 436 /** 437 * Checks if the running OS is (at least) Windows 10 (e.g. >= build 10000). 438 * 439 * Called from the MSI installer as custom action. 440 * 441 * @returns Always ERROR_SUCCESS. 442 * Sets public property VBOX_IS_WINDOWS_10 to "" (empty / false) or "1" (success). 443 * 444 * @param hModule Windows installer module handle. 445 */ 446 UINT __stdcall IsWindows10(MSIHANDLE hModule) 447 { 448 /* 449 * Note: We cannot use RtlGetVersion() / GetVersionExW() here, as the Windows Installer service 450 * all shims this, unfortunately. So we have to go another route by querying the major version 451 * number from the registry. 452 */ 453 HKEY hKeyCurVer = NULL; 454 LSTATUS dwErr = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", 0, KEY_READ, &hKeyCurVer); 455 if (dwErr == ERROR_SUCCESS) 456 { 457 DWORD dwVal = 0; 458 DWORD cbVal = sizeof(dwVal); 459 DWORD dwValueType = REG_DWORD; 460 dwErr = RegQueryValueExW(hKeyCurVer, L"CurrentMajorVersionNumber", NULL, &dwValueType, (LPBYTE)&dwVal, &cbVal); 461 if (dwErr == ERROR_SUCCESS) 462 { 463 logStringF(hModule, L"IsWindows10/CurrentMajorVersionNumber: %ld", dwVal); 464 465 VBoxSetMsiProp(hModule, L"VBOX_IS_WINDOWS_10", dwVal >= 10 ? L"1" : L""); 466 } 467 else 468 logStringF(hModule, L"IsWindows10/RegOpenKeyExW: Error reading CurrentMajorVersionNumber (%ld)", dwErr); 469 470 RegCloseKey(hKeyCurVer); 471 } 472 else 473 logStringF(hModule, L"IsWindows10/RegOpenKeyExW: Error opening CurrentVersion key (%ld)", dwErr); 474 433 475 return ERROR_SUCCESS; /* Never return failure. */ 434 476 } -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.def
r93242 r95037 21 21 CheckSerial 22 22 IsPythonInstalled 23 IsWindows10 23 24 ArePythonAPIDepsInstalled 24 25 InstallPythonAPI
Note:
See TracChangeset
for help on using the changeset viewer.