@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
)

clear
echo =========================================
echo END of MAIN image preparation ... 
echo =========================================
date /t
time /t
echo.

rem start scripts
for %%S in (

  remove-apps.cmd
  finish-image.cmd

) do (

  echo ########## calling [ %%S ] ##########
  call %%S
  echo.

)

rem go back ...
cd ..

echo.
date /t
time /t
echo ======
echo READY.
echo ======