w10install/05_FinishImage.cmd

46 lines
576 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
)
2022-12-28 15:43:33 +01:00
rem remove-apps.cmd
2021-03-16 23:51:45 +01:00
clear
echo =========================================
echo END of MAIN image preparation ...
echo =========================================
2021-03-16 23:51:45 +01:00
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
2021-03-17 00:22:50 +01:00
echo ======
echo READY.
echo ======
2021-03-16 23:51:45 +01:00