w10install/03_MakeBoot.cmd
Michael H.G. Schmidt 8ef035d16d reorg
2023-01-02 17:15:02 +01:00

39 lines
520 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
)
echo =========================================
echo START of BOOT image creation process ...
echo =========================================
echo.
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
echo ======
echo READY.
echo ======