Changeset 96428 in vbox for trunk/src/VBox/Installer/win/InstallHelper
- Timestamp:
- Aug 23, 2022 7:27:21 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153258
- Location:
- trunk/src/VBox/Installer/win/InstallHelper
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.cpp
r96407 r96428 55 55 #endif 56 56 57 UINT VBoxGetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize)57 UINT VBoxGetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize) 58 58 { 59 59 DWORD dwBuffer = 0; … … 105 105 #endif 106 106 107 UINT VBoxSetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName,WCHAR *pwszValue)107 UINT VBoxSetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, const WCHAR *pwszValue) 108 108 { 109 109 return MsiSetPropertyW(hMsi, pwszName, pwszValue); 110 110 } 111 111 112 UINT VBoxSetMsiPropDWORD(MSIHANDLE hMsi, const WCHAR *pwszName, DWORD dwVal) 113 { 114 wchar_t wszTemp[32]; 115 swprintf(wszTemp, sizeof(wszTemp) / sizeof(wchar_t), L"%ld", dwVal); 116 return VBoxSetMsiProp(hMsi, pwszName, wszTemp); 117 } 118 -
trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.h
r96407 r96428 36 36 #endif 37 37 38 UINT VBoxGetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize);38 UINT VBoxGetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize); 39 39 int VBoxGetMsiPropUtf8(MSIHANDLE hMsi, const char *pcszName, char **ppszValue); 40 UINT VBoxSetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue); 40 UINT VBoxSetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, const WCHAR *pwszValue); 41 UINT VBoxSetMsiPropDWORD(MSIHANDLE hMsi, const WCHAR *pwszName, DWORD dwVal); 41 42 42 43 #endif /* !VBOX_INCLUDED_SRC_InstallHelper_VBoxCommon_h */ -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r96407 r96428 441 441 442 442 VBoxSetMsiProp(hModule, L"VBOX_PYTHON_DEPS_INSTALLED", dwErr == ERROR_SUCCESS ? L"1" : L"0"); 443 return ERROR_SUCCESS; /* Never return failure. */ 444 } 445 446 /** 447 * Checks if all required MS CRTs (Visual Studio Redistributable Package) are installed on the system. 448 * 449 * Called from the MSI installer as custom action. 450 * 451 * @returns Always ERROR_SUCCESS. 452 * Sets public property VBOX_MSCRT_INSTALLED to "" (false, to use "NOT" in WiX) or "1" (success). 453 * 454 * Also exposes public properties VBOX_MSCRT_VER_MIN + VBOX_MSCRT_VER_MAJ strings 455 * with the most recent MSCRT version detected. 456 * 457 * @param hModule Windows installer module handle. 458 * 459 * @sa https://docs.microsoft.com/en-us/cpp/windows/redistributing-visual-cpp-files?view=msvc-170 460 */ 461 UINT __stdcall IsMSCRTInstalled(MSIHANDLE hModule) 462 { 463 HKEY hKeyVS = NULL; 464 LSTATUS dwErr = RegOpenKeyExW(HKEY_LOCAL_MACHINE, 465 L"SOFTWARE\\Microsoft\\VisualStudio\\14.0\\VC\\Runtimes\\X64", 466 0, KEY_READ, &hKeyVS); 467 if (dwErr == ERROR_SUCCESS) 468 { 469 DWORD dwVal = 0; 470 DWORD cbVal = sizeof(dwVal); 471 DWORD dwValueType = REG_DWORD; 472 473 dwErr = RegQueryValueExW(hKeyVS, L"Installed", NULL, &dwValueType, (LPBYTE)&dwVal, &cbVal); 474 if (dwErr == ERROR_SUCCESS) 475 { 476 if (dwVal >= 1) 477 { 478 DWORD dwMin, dwMaj; 479 dwErr = RegQueryValueExW(hKeyVS, L"Major", NULL, &dwValueType, (LPBYTE)&dwMaj, &cbVal); 480 if (dwErr == ERROR_SUCCESS) 481 { 482 VBoxSetMsiPropDWORD(hModule, L"VBOX_MSCRT_VER_MAJ", dwMaj); 483 484 dwErr = RegQueryValueExW(hKeyVS, L"Minor", NULL, &dwValueType, (LPBYTE)&dwMin, &cbVal); 485 if (dwErr == ERROR_SUCCESS) 486 { 487 VBoxSetMsiPropDWORD(hModule, L"VBOX_MSCRT_VER_MIN", dwMin); 488 489 logStringF(hModule, L"IsMSCRTInstalled: Found v%ld.%ld\n", dwMaj, dwMin); 490 491 /* Check for at least 2019. */ 492 if (dwMaj >= 14 && dwMin >= 20) 493 VBoxSetMsiProp(hModule, L"VBOX_MSCRT_INSTALLED", L"1"); 494 } 495 else 496 logStringF(hModule, L"IsMSCRTInstalled: Found, but 'Minor' key not present"); 497 } 498 else 499 logStringF(hModule, L"IsMSCRTInstalled: Found, but 'Major' key not present"); 500 } 501 else 502 { 503 logStringF(hModule, L"IsMSCRTInstalled: Found, but not marked as installed"); 504 dwErr = ERROR_NOT_INSTALLED; 505 } 506 } 507 else 508 logStringF(hModule, L"IsMSCRTInstalled: Found, but 'Installed' key not present"); 509 } 510 511 if (dwErr != ERROR_SUCCESS) 512 logStringF(hModule, L"IsMSCRTInstalled: Failed with dwErr=%ld", dwErr); 513 443 514 return ERROR_SUCCESS; /* Never return failure. */ 444 515 } -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.def
r96407 r96428 30 30 IsSerialCheckNeeded 31 31 CheckSerial 32 IsMSCRTInstalled 32 33 IsPythonInstalled 33 34 IsWindows10
Note:
See TracChangeset
for help on using the changeset viewer.