check for ADK added

This commit is contained in:
Michael H.G. Schmidt 2023-07-30 12:23:40 +02:00
parent 2382f6a81d
commit 07adefd358

View File

@ -18,6 +18,7 @@ if /I %DRIVE% == %SystemDrive% (
)
echo using drive [ %DRIVE% ] ...
echo.
if NOT EXIST %DRIVE% (
echo ERROR: drive %DRIVE% not found!
@ -36,6 +37,12 @@ if EXIST %ISOFILE% (
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.