w10install/03_MakeAll.cmd
Michael H.G. Schmidt 10a8ab3bbf bugfix
2021-03-28 00:45:34 +01:00

59 lines
788 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.
echo cleanup ...
del /F Apps*.txt 2>nul
del /F Packages*.txt 2>nul
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
IF %ERRORLEVEL% NEQ 0 (
echo ERROR while exporting image
exit /b
)
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 READY.
echo ======