- Timestamp:
- Apr 24, 2018 7:11:35 AM (7 years ago)
- Location:
- trunk/src/VBox/Installer/win/Scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Scripts/PackDriversForSubmission.cmd
r71981 r71991 176 176 rem We unpack it into the bin directory in the usual location. 177 177 rem 178 rem Note! Modify the path a little to ensure windows utilities are used before 179 rem cygwin ones, and that we can use stuff from bin\tools if we like. 180 rem 181 set PATH=%SystemRoot%\System32;%PATH%;%_MY_OPT_BINDIR% 178 182 if "%_MY_OPT_WITH_EXTPACK" == "0" goto no_extpack_unpack 179 set PATH=%PATH%;%_MY_OPT_BINDIR%180 183 set _MY_EXTPACK_DIR=%_MY_OPT_BINDIR%\ExtensionPacks\Oracle_VM_VirtualBox_Extension_Pack 181 184 if not exist "%_MY_OPT_BINDIR%\ExtensionPacks" ( mkdir "%_MY_OPT_BINDIR%\ExtensionPacks" || goto end_failed ) -
trunk/src/VBox/Installer/win/Scripts/UnpackBlessedDrivers.cmd
r71951 r71991 60 60 61 61 :opt_h 62 echo This script unpacks the cabinent contining the blessed driver files from62 echo This script unpacks the zip-file containing the blessed driver files from 63 63 echo Microsoft, replacing original files in the bin directory. The catalog files 64 64 echo will be signed again and the Microsoft signature merged with ours. 65 65 echo . 66 echo Usage: UnpackBlessedDrivers.cmd [-b bindir] [-n/--no-sign-cat] -i input. cab66 echo Usage: UnpackBlessedDrivers.cmd [-b bindir] [-n/--no-sign-cat] -i input.zip 67 67 echo . 68 68 echo Warning! This script should normally be invoked from the repack directory … … 104 104 rem subdirectories and just put all the files in the specified bin dir. 105 105 rem 106 expand "%_MY_OPT_INPUT%" "%_MY_OPT_BINDIR%" -i -f:* || goto end_failed 106 107 rem We're getting ZIP files back now. 108 rem expand "%_MY_OPT_INPUT%" "%_MY_OPT_BINDIR%" -i -f:* || goto end_failed 109 echo fixme 110 goto end_failed 111 107 112 108 113 rem
Note:
See TracChangeset
for help on using the changeset viewer.