w10install/04_PrepareImage.cmd
Michael H.G. Schmidt e1b55a043b testing ...
2022-12-29 11:47:49 +01:00

55 lines
810 B
Batchfile

@echo off
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd image
)
clear
echo =========================================
echo START of MAIN image preparation ...
echo =========================================
date /t
time /t
echo.
rem start scripts
for %%S in (
export-image.cmd
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo checking for NTLite ...
if NOT EXIST %NTLITE% (
echo.
echo ERROR: program [ NTLite ] NOT FOUND!
exit /b
) else (
echo calling NTLite ...
rem stupid windows: the "" are needed or NTlite will not be started - sigh -
start /B "" %NTLITE%
)
echo.
date /t
time /t
echo ======
echo READY.
echo ======