w10install/wim/make-all.cmd
2021-03-16 23:23:06 +01:00

37 lines
350 B
Batchfile

@echo off
clear
echo =====
echo START
echo =====
date /t
time /t
echo.
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.
)
echo.
date /t
time /t
echo =====
echo END
echo =====