w10install/07_MakeISO.cmd
Michael H.G. Schmidt 49582f82cb renaming
2023-02-20 10:35:26 +01:00

53 lines
969 B
Batchfile

@echo off
set OSCDPATH="%ProgramFiles(x86)%\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg"
set OSLABEL=WIN10-AUTO
set ISOFILE=%SystemDrive%\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE
echo ================================
echo Make ISO file from Media ...
echo ================================
echo.
set DRIVE=%1
if /I %DRIVE% == %SystemDrive% (
echo ERROR: cannot use drive %DRIVE% !
exit /b
)
echo using drive [ %DRIVE% ] ...
if NOT EXIST %DRIVE% (
echo ERROR: drive %DRIVE% not found!
exit /b
)
rem =====
rem MAIN
rem =====
del /F %ISOFILE% 2>nul
if EXIST %ISOFILE% (
echo ERROR: cannot delete/create %ISOFILE%!
echo HINT: maybe it is mounted by Virtualbox or some other tool?
exit /b
)
%OSCDPATH%\oscdimg -l%OSLABEL% -m -u2 -b%OSCDPATH%\etfsboot.com %DRIVE%\ %ISOFILE%
echo.
echo ======
echo READY.
echo ======
GOTO END
:USAGE
echo "usage: %0 <DRIVE>"
:END