w10install/03_MakeAll.cmd

54 lines
708 B
Batchfile
Raw Normal View History

2021-03-16 23:51:45 +01:00
@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.
2021-03-22 00:39:55 +01:00
echo cleanup ...
del /F Apps*.txt 2>nul
del /F Packages*.txt 2>nul
2021-03-16 23:51:45 +01:00
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
mount-image.cmd
2021-03-23 20:43:55 +01:00
remove-apps.cmd
2021-03-16 23:51:45 +01:00
remove-packages.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
date /t
time /t
2021-03-17 00:22:50 +01:00
echo ======
echo READY.
echo ======
2021-03-16 23:51:45 +01:00