testing ...

This commit is contained in:
Michael H.G. Schmidt 2022-12-29 10:49:17 +01:00
parent b713e6bd11
commit c879f10d4b
25 changed files with 30 additions and 44 deletions

View File

@ -1,12 +1,12 @@
@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
cd image
)
clear

View File

@ -1,12 +1,12 @@
@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
cd image
)
clear

View File

@ -1,12 +1,12 @@
@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
rem check for the image directory ...
if NOT EXIST image (
echo ERROR: directory [ image ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
cd image
)
clear

View File

@ -111,6 +111,7 @@ rem =====
@echo.select partition 1
@echo.format fs="%FS%" LABEL="%LABEL%" quick
@echo.active
@echo.assign
@echo.exit
@echo.
)

View File

@ -59,12 +59,12 @@ set answer=
set /p answer="BIOS or UEFI setup (B/U)? "
if /i "%answer:~,1%" EQU "B" (
echo selected: BIOS
copy /Y boot\autounattend_BIOS_template.xml %USBDRIVE%\autounattend.xml
copy /Y image\autounattend_BIOS_template.xml %USBDRIVE%\autounattend.xml
GOTO CONT
)
if /i "%answer:~,1%" EQU "U" (
echo selected: UEFI
copy /Y boot\autounattend_UEFI_template.xml %USBDRIVE%\autounattend.xml
copy /Y image\autounattend_UEFI_template.xml %USBDRIVE%\autounattend.xml
GOTO CONT
)
echo Please type B for BIOS or U for UEFI setup.
@ -155,11 +155,11 @@ if EXIST %SCRIPT_SETTINGS% (
echo.
echo copying custom setup script to %USBDRIVE% ...
copy /Y boot\CustomSetup.cmd %USBDRIVE%\
copy /Y image\CustomSetup.cmd %USBDRIVE%\
echo.
echo putting tools-copy script to %USBDRIVE% ...
copy /Y boot\CopyTools.cmd %USBDRIVE%\
copy /Y image\CopyTools.cmd %USBDRIVE%\
echo READY.
echo.

View File

View File

@ -23,9 +23,13 @@ rem echo restart explorer ...
rem taskkill /F /IM explorer.exe & start explorer.exe
rem echo.
echo deleting %TOOLS% and %SXS% ...
rd /S /Q %TOOLS% %SXS%
echo.
rem echo deleting %TOOLS% and %SXS% ...
rem rd /S /Q %TOOLS% %SXS%
rem echo.
rem WARNING: DO NOT KILL windows explorer here!
rem Explanation: Doing this will result in a crippled
rem Windows defender configuration! (App to open it will not be present)
echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL

View File

@ -10,28 +10,28 @@ if EXIST ..\settings.cmd (
echo LANG=%LANG%
if NOT EXIST %BOOT%\winsetup.exe (
echo renaming Windows setup.exe to boot ...
echo renaming Windows setup.exe to boot image ...
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
)
echo setting language in boot ...
echo setting language in boot image ...
dism /image:%BOOT% /Set-InputLocale:%LANG%
dism /image:%BOOT% /Set-SysLocale:%LANG%
echo replacing setup.exe with our installer utility ...
copy /Y installer.exe %BOOT%\setup.exe
echo copy snapshot64 to boot ...
echo copy snapshot64 to boot image ...
if EXIST ..\personal\snapshot64.exe (
copy /Y ..\personal\snapshot64.exe %BOOT%
) else (
copy /Y ..\software\snapshot64.exe %BOOT%
)
echo copy netuse helper script to boot ...
echo copy netuse helper script to boot image ...
copy /Y netuse.cmd %BOOT%
echo showing boot contents ...
echo showing boot image contents ...
dir %BOOT%
echo unmounting and committing changes to %SOURCES%\boot.wim ...

View File

@ -11,6 +11,7 @@ echo ####### %0 #######
echo killing Teams process ...
taskkill /F /IM teams.exe 2>nul
timeout /nobreak 3
echo cleaning cache ...
deltree "%USERPROFILE%\AppData\Roaming\Microsoft\Teams"

View File

@ -1,20 +0,0 @@
@echo off
set SCRIPTS=%WINDIR%\Setup\scripts
set LOG1=C:\SetupComplete.txt
set LOG2=C:\StartCustomSetup.txt
rem prepare ...
mkdir %SCRIPTS% 1>nul 2>nul
del /F %LOG1% 1>nul 2>nul
del /F %LOG2% 1>nul 2>nul
echo ####### %0 #######
copy /Y SetupComplete.cmd %SCRIPTS%
copy /Y StartCustomSetup.cmd %SCRIPTS%
echo ####### %0 #######
call %SCRIPTS%\SetupComplete.cmd
call %SCRIPTS%\StartCustomSetup.cmd