w10install/07_MakeISO.cmd
Michael H.G. Schmidt 07adefd358 check for ADK added
2023-07-30 12:23:40 +02:00

60 lines
1.1 KiB
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% ] ...
echo.
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
)
if NOT EXIST %OSCDPATH%\oscdimg.exe (
echo ERROR: cannot find oscdimg.exe!
echo HINT: is "Assessment and Deployment Kit (ADK)" installed?
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