w10install/03_MakeBoot.cmd
2022-12-25 20:52:46 +01:00

44 lines
560 B
Batchfile

@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
)
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 ======