Changeset 107822 in vbox for trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
- Timestamp:
- Jan 16, 2025 3:09:22 PM (6 weeks ago)
- svn:sync-xref-src-repo-rev:
- 166991
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
r107767 r107822 1687 1687 { 1688 1688 vboxWinDrvInstLogVerbose(pCtx, 1, "Using DiUninstallDriverW()"); 1689 1689 1690 BOOL fReboot = FALSE; 1690 1691 if (!(pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_DRYRUN)) … … 1708 1709 vboxWinDrvInstLogVerbose(pCtx, 1, "Using SetupUninstallOEMInfW()"); 1709 1710 1710 DWORD dwUninstallFlags = 0;1711 if (pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_FORCE)1712 dwUninstallFlags |= SUOI_FORCEDELETE;1713 1714 1711 if (!(pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_DRYRUN)) 1712 { 1713 DWORD dwUninstallFlags = 0; 1714 if (pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_FORCE) 1715 dwUninstallFlags |= SUOI_FORCEDELETE; 1716 1717 /* Takes the oemXXX.inf file (without a path), as found in the Windows INF directory. */ 1715 1718 fRc = g_pfnSetupUninstallOEMInfW(pCur->wszInfFile, dwUninstallFlags, NULL /* pReserved */); 1716 else 1717 fRc = FALSE; 1719 } 1718 1720 } 1719 1721
Note:
See TracChangeset
for help on using the changeset viewer.