w10install/04_PrepareImage.cmd
Michael H.G. Schmidt 58a9faa45b filetypes added
2023-01-20 21:50:27 +01:00

76 lines
1.3 KiB
Batchfile

@echo off
set ARG1=null
set SOURCES=c:\TEMP\W10\sources
IF "%~1" NEQ "" set ARG1=%1
if /I %ARG1% == /? goto usage
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd image
)
rem check for wim file ...
if NOT EXIST %SOURCES%\install.wim (
echo ERROR: [ %SOURCES%\install.wim ] NOT FOUND!
cd ..
exit /b
)
echo =========================================
echo START of MAIN image creation process ...
echo =========================================
echo.
rem start scripts
for %%S in (
export-image.cmd
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
if /I %ARG1% == /R (
echo ########## calling [ remove-apps.cmd ] ##########
call remove-apps.cmd
echo.
)
echo ########## calling [ finish-image.cmd ] ##########
call finish-image.cmd
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%
)
rem go back ...
cd ..
echo.
echo ======
echo READY.
echo ======
GOTO END
:USAGE
echo.
echo "usage: %0 [/R|/?]"
echo " /R = remove apps from main image"
echo " /? = show help "
echo.
:END