Changeset 106839 in vbox for trunk/src/VBox/Installer/win/InstallHelper
- Timestamp:
- Nov 5, 2024 5:22:30 PM (5 months ago)
- svn:sync-xref-src-repo-rev:
- 165750
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r106822 r106839 1472 1472 || rc == VERR_NOT_FOUND) /* VBoxDrvInstInfSection is optional. */ 1473 1473 { 1474 char *psz PnpId= NULL;1475 rc = VBoxMsiQueryPropUtf8(hModule, "VBoxDrvInst PnpId", &pszPnpId);1474 char *pszModel = NULL; 1475 rc = VBoxMsiQueryPropUtf8(hModule, "VBoxDrvInstModel", &pszModel); 1476 1476 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. */ 1492 1483 { 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); 1499 1507 } 1500 1508 1501 RTStrFree(psz PnpId);1509 RTStrFree(pszModel); 1502 1510 } 1503 1511
Note:
See TracChangeset
for help on using the changeset viewer.