Changeset 107973 in vbox for trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
- Timestamp:
- Jan 29, 2025 9:30:26 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167232
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
r107935 r107973 1310 1310 /* For anything else we want to get notified that something isn't working. */ 1311 1311 if (!fRc) 1312 rc = vboxWinDrvInstLogLastError(pCtx, "DiInstallDriverW() failed"); 1312 { 1313 switch (dwErr) 1314 { 1315 case ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED: 1316 { 1317 /* For silent installs give a clue why this might have failed. */ 1318 if (pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_SILENT) 1319 vboxWinDrvInstLogWarn(pCtx, "Silent installation was selected, but required certificates " 1320 "were not pre-installed into the Windows drvier store, so " 1321 "the installation will be rejected automatically"); 1322 RT_FALL_THROUGH(); 1323 } 1324 1325 default: 1326 rc = vboxWinDrvInstLogLastError(pCtx, "DiInstallDriverW() failed"); 1327 break; 1328 } 1329 } 1313 1330 } 1314 1331 … … 1360 1377 vboxWinDrvInstLogWarn(pCtx, "Not able to select a driver from the given INF, using given model"); 1361 1378 break; 1379 } 1380 1381 case ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED: 1382 { 1383 /* For silent installs give a clue why this might have failed. */ 1384 if (pParms->fFlags & VBOX_WIN_DRIVERINSTALL_F_SILENT) 1385 vboxWinDrvInstLogWarn(pCtx, "Silent installation was selected, but required certificates " 1386 "were not pre-installed into the Windows drvier store, so " 1387 "the installation will be rejected automatically"); 1388 RT_FALL_THROUGH(); 1362 1389 } 1363 1390
Note:
See TracChangeset
for help on using the changeset viewer.