w10install/03_MakeBoot.cmd
Michael H.G. Schmidt c879f10d4b testing ...
2022-12-29 10:49:17 +01:00

44 lines
558 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 BOOT image creation process ...
echo =========================================
date /t
time /t
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.
date /t
time /t
echo ======
echo READY.
echo ======