VirtualBox

Ignore:
Timestamp:
Aug 23, 2022 7:27:21 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
153258
Message:

Installer/win: Added new build define VBOX_WITH_CRT_PACKING, which leaves out packing the MSCRT with the Windows installer and also checks if the MSCRT 2019 Redistributable Package is installed on the system as a prerequisite (via a custom action). bugref:10284

Location:
trunk/src/VBox/Installer/win/InstallHelper
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.cpp

    r96407 r96428  
    5555#endif
    5656
    57 UINT VBoxGetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize)
     57UINT VBoxGetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize)
    5858{
    5959    DWORD dwBuffer = 0;
     
    105105#endif
    106106
    107 UINT VBoxSetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue)
     107UINT VBoxSetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, const WCHAR *pwszValue)
    108108{
    109109    return MsiSetPropertyW(hMsi, pwszName, pwszValue);
    110110}
    111111
     112UINT 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  
    3636#endif
    3737
    38 UINT VBoxGetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize);
     38UINT VBoxGetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, WCHAR *pwszValue, DWORD dwSize);
    3939int  VBoxGetMsiPropUtf8(MSIHANDLE hMsi, const char *pcszName, char **ppszValue);
    40 UINT VBoxSetMsiProp(MSIHANDLE hMsi, WCHAR *pwszName, WCHAR *pwszValue);
     40UINT VBoxSetMsiProp(MSIHANDLE hMsi, const WCHAR *pwszName, const WCHAR *pwszValue);
     41UINT VBoxSetMsiPropDWORD(MSIHANDLE hMsi, const WCHAR *pwszName, DWORD dwVal);
    4142
    4243#endif /* !VBOX_INCLUDED_SRC_InstallHelper_VBoxCommon_h */
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp

    r96407 r96428  
    441441
    442442    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 */
     461UINT __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
    443514    return ERROR_SUCCESS; /* Never return failure. */
    444515}
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.def

    r96407 r96428  
    3030    IsSerialCheckNeeded
    3131    CheckSerial
     32    IsMSCRTInstalled
    3233    IsPythonInstalled
    3334    IsWindows10
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette