This commit is contained in:
Michael H.G. Schmidt 2021-03-16 23:51:45 +01:00
parent 98fdb8ee59
commit 95720c69ec
11 changed files with 53 additions and 40 deletions

49
02_MakeAll.cmd Normal file
View File

@ -0,0 +1,49 @@
@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
)
clear
echo ===================================
echo START of image creation process ...
echo ===================================
date /t
time /t
echo.
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
mount-image.cmd
remove-apps.cmd
remove-packages.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
date /t
time /t
echo =====
echo END
echo =====

View File

@ -34,12 +34,12 @@ set answer=
set /p answer="BIOS or UEFI setup (B/U)? "
if /i "%answer:~,1%" EQU "B" (
echo selected: BIOS
copy /Y autounattend_BIOS.xml %USBDRIVE%\autounattend.xml
copy /Y boot\autounattend_BIOS.xml %USBDRIVE%\autounattend.xml
GOTO CONT
)
if /i "%answer:~,1%" EQU "U" (
echo selected: UEFI
copy /Y autounattend_UEFI.xml %USBDRIVE%\autounattend.xml
copy /Y boot\autounattend_UEFI.xml %USBDRIVE%\autounattend.xml
GOTO CONT
)
echo Please type B for BIOS or U for UEFI setup.
@ -49,7 +49,7 @@ set answer=
if EXIST %SOURCES%\%IMAGE% (
echo.
echo copying [ %IMAGE ] to drive %USBDRIVE% ...
echo copying [ %IMAGE% ] to drive %USBDRIVE% ...
robocopy %SOURCES% %USBDRIVE%\sources %IMAGE% /J /NJH
rem move image in place ...
@ -88,7 +88,7 @@ for %%P in (software scripts source optional personal) do (
echo.
echo copying custom setup script to %USBDRIVE% ...
copy /Y CustomSetup.cmd %USBDRIVE%\
copy /Y boot\CustomSetup.cmd %USBDRIVE%\
echo READY.
echo.

View File

@ -1,36 +0,0 @@
@echo off
clear
echo =====
echo START
echo =====
date /t
time /t
echo.
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
mount-image.cmd
remove-apps.cmd
remove-packages.cmd
finish-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
echo.
date /t
time /t
echo =====
echo END
echo =====