w10install/02_MakeAll.cmd
Michael H.G. Schmidt 95720c69ec reorg
2021-03-16 23:51:45 +01:00

50 lines
635 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 image creation process ...
echo ===================================
date /t
time /t
echo.
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
mount-image.cmd
remove-apps.cmd
remove-packages.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
date /t
time /t
echo =====
echo END
echo =====