VirtualBox

Ignore:
Timestamp:
Nov 5, 2024 5:22:30 PM (5 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
165750
Message:

Windows driver installation: Made it a bit smarter wrt model / PnP ID detection within files. bugref:10762

File:
1 edited

Legend:

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

    r106822 r106839  
    14721472            || rc == VERR_NOT_FOUND) /* VBoxDrvInstInfSection is optional. */
    14731473        {
    1474             char *pszPnpId = NULL;
    1475             rc = VBoxMsiQueryPropUtf8(hModule, "VBoxDrvInstPnpId", &pszPnpId);
     1474            char *pszModel = NULL;
     1475            rc = VBoxMsiQueryPropUtf8(hModule, "VBoxDrvInstModel", &pszModel);
    14761476            if (   RT_SUCCESS(rc)
    1477                 || rc == VERR_NOT_FOUND) /* VBoxDrvInstHwId is optional. */
    1478             {
    1479                 uint32_t fFlags = VBOX_WIN_DRIVERINSTALL_F_NONE;
    1480 
    1481                 DWORD dwVal;
    1482                 rc = VBoxMsiQueryPropInt32(hModule, "VBoxDrvInstFlagForce", &dwVal);
    1483                 if (RT_SUCCESS(rc))
    1484                     fFlags |= VBOX_WIN_DRIVERINSTALL_F_FORCE;
    1485                 rc = VBoxMsiQueryPropInt32(hModule, "VBoxDrvInstFlagSilent", &dwVal);
    1486                 if (RT_SUCCESS(rc))
    1487                     fFlags |= VBOX_WIN_DRIVERINSTALL_F_SILENT;
    1488 
    1489                 VBOXWINDRVINST hWinDrvInst;
    1490                 rc = VBoxWinDrvInstCreateEx(&hWinDrvInst, 1 /* uVerbostiy */, &vboxWinDrvInstLogCallback, &hModule /* pvUser */);
    1491                 if (RT_SUCCESS(rc))
     1477                || rc == VERR_NOT_FOUND) /* VBoxDrvInstModel is optional. */
     1478            {
     1479                char *pszPnpId = NULL;
     1480                rc = VBoxMsiQueryPropUtf8(hModule, "VBoxDrvInstPnpId", &pszPnpId);
     1481                if (   RT_SUCCESS(rc)
     1482                    || rc == VERR_NOT_FOUND) /* VBoxDrvInstPnpId is optional. */
    14921483                {
    1493                     if (pszInfSection && *pszInfSection)
    1494                         rc = VBoxWinDrvInstInstallExecuteInf(hWinDrvInst, pszInfFile, pszInfSection, fFlags);
    1495                     else
    1496                         rc = VBoxWinDrvInstInstall(hWinDrvInst, pszInfFile, pszPnpId, fFlags);
    1497 
    1498                     VBoxWinDrvInstDestroy(hWinDrvInst);
     1484                    uint32_t fFlags = VBOX_WIN_DRIVERINSTALL_F_NONE;
     1485
     1486                    DWORD dwVal;
     1487                    rc = VBoxMsiQueryPropInt32(hModule, "VBoxDrvInstFlagForce", &dwVal);
     1488                    if (RT_SUCCESS(rc))
     1489                        fFlags |= VBOX_WIN_DRIVERINSTALL_F_FORCE;
     1490                    rc = VBoxMsiQueryPropInt32(hModule, "VBoxDrvInstFlagSilent", &dwVal);
     1491                    if (RT_SUCCESS(rc))
     1492                        fFlags |= VBOX_WIN_DRIVERINSTALL_F_SILENT;
     1493
     1494                    VBOXWINDRVINST hWinDrvInst;
     1495                    rc = VBoxWinDrvInstCreateEx(&hWinDrvInst, 1 /* uVerbostiy */, &vboxWinDrvInstLogCallback, &hModule /* pvUser */);
     1496                    if (RT_SUCCESS(rc))
     1497                    {
     1498                        if (pszInfSection && *pszInfSection)
     1499                            rc = VBoxWinDrvInstInstallExecuteInf(hWinDrvInst, pszInfFile, pszInfSection, fFlags);
     1500                        else
     1501                            rc = VBoxWinDrvInstInstallEx(hWinDrvInst, pszInfFile, pszModel, pszPnpId, fFlags);
     1502
     1503                        VBoxWinDrvInstDestroy(hWinDrvInst);
     1504                    }
     1505
     1506                    RTStrFree(pszPnpId);
    14991507                }
    15001508
    1501                 RTStrFree(pszPnpId);
     1509                RTStrFree(pszModel);
    15021510            }
    15031511
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