w10install/05_FinishImage.cmd
Michael H.G. Schmidt 80f8f36a9e added TrID tool
2023-01-03 13:27:21 +01:00

40 lines
517 B
Batchfile

@echo off
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd image
)
echo =================================
echo END of MAIN image preparation ...
echo =================================
echo.
rem start scripts
for %%S in (
mount-image.cmd
remove-apps.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
echo ======
echo READY.
echo ======