w10install/05_FinishImage.cmd
Michael H.G. Schmidt 1824c7dde9 added prompt user!
2022-12-28 15:43:33 +01:00

46 lines
576 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
)
rem remove-apps.cmd
clear
echo =========================================
echo END of MAIN image preparation ...
echo =========================================
date /t
time /t
echo.
rem start scripts
for %%S in (
mount-image.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
date /t
time /t
echo ======
echo READY.
echo ======