Changeset 106833 in vbox for trunk/src/VBox/HostDrivers/win
- Timestamp:
- Nov 5, 2024 12:28:16 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165744
- Location:
- trunk/src/VBox/HostDrivers/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/win/load.cmd
r106061 r106833 52 52 :dir_okay 53 53 rem 54 rem We don't use the driver files directly any more because of win10 keeping the open, 55 rem so create an alternative directory for the binaries. 54 rem We don't use the driver files directly any more because of win10 keeping them 55 rem open, so create an alternative directory for the binaries. Another reason is 56 rem loading drivers via network shares, in which case we just use temp. 56 57 rem 57 58 set MY_ALTDIR=%MY_DIR%\..\LoadedDrivers 59 if not "%MY_ALTDIR:~1:1" == ":" goto alt_dir_remote 60 net use "%MY_ALTDIR:~0:1" > nul 2>nul && goto alt_dir_remote 61 goto alt_dir_done 62 :alt_dir_remote 63 set MY_ALTDIR=%TMP%\VBoxLoadedDrivers 64 :alt_dir_done 58 65 if not exist "%MY_ALTDIR%" mkdir "%MY_ALTDIR%" 59 66 -
trunk/src/VBox/HostDrivers/win/loadall.cmd
r106061 r106833 52 52 :dir_okay 53 53 rem 54 rem We don't use the driver files directly any more because of win10 keeping the open, 55 rem so create an alternative directory for the binaries. 54 rem We don't use the driver files directly any more because of win10 keeping them 55 rem open, so create an alternative directory for the binaries. Another reason is 56 rem loading drivers via network shares, in which case we just use temp. 56 57 rem 57 58 set MY_ALTDIR=%MY_DIR%\..\LoadedDrivers 59 if not "%MY_ALTDIR:~1:1" == ":" goto alt_dir_remote 60 net use "%MY_ALTDIR:~0:1" > nul 2>nul && goto alt_dir_remote 61 goto alt_dir_done 62 :alt_dir_remote 63 set MY_ALTDIR=%TMP%\VBoxLoadedDrivers 64 :alt_dir_done 58 65 if not exist "%MY_ALTDIR%" mkdir "%MY_ALTDIR%" 59 66
Note:
See TracChangeset
for help on using the changeset viewer.