w10install/04_PrepareImage.cmd

49 lines
750 B
Batchfile
Raw Normal View History

2021-03-16 23:51:45 +01:00
@echo off
2022-12-29 10:49:17 +01:00
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
2021-03-16 23:51:45 +01:00
echo ABORT.
exit /b
) else (
2022-12-29 10:49:17 +01:00
cd image
2021-03-16 23:51:45 +01:00
)
2023-01-02 17:15:02 +01:00
echo ===================================
echo START of MAIN image preparation ...
2023-01-02 17:15:02 +01:00
echo ===================================
2021-03-16 23:51:45 +01:00
echo.
rem start scripts
for %%S in (
export-image.cmd
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
echo checking for NTLite ...
if NOT EXIST %NTLITE% (
echo.
echo ERROR: program [ NTLite ] NOT FOUND!
) else (
echo calling NTLite ...
rem stupid windows: the "" are needed or NTlite will not be started - sigh -
start /B "" %NTLITE%
)
2023-01-02 17:15:02 +01:00
rem go back ...
cd ..
2021-03-16 23:51:45 +01:00
echo.
2021-03-17 00:22:50 +01:00
echo ======
echo READY.
echo ======
2021-03-16 23:51:45 +01:00