2021-03-16 23:23:06 +01:00
|
|
|
@echo off
|
|
|
|
set SOURCES=c:\TEMP\W10\sources
|
|
|
|
set BOOT=c:\TEMP\BOOT
|
2023-01-02 16:00:47 +01:00
|
|
|
set SETTINGS=..\scripts\settings.cmd
|
2021-03-16 23:23:06 +01:00
|
|
|
|
2023-01-02 16:00:47 +01:00
|
|
|
if EXIST %SETTINGS% (
|
|
|
|
call %SETTINGS%
|
2021-03-21 00:08:41 +01:00
|
|
|
) else (
|
|
|
|
set LANG=en-US
|
|
|
|
)
|
|
|
|
echo LANG=%LANG%
|
|
|
|
|
2021-03-16 23:23:06 +01:00
|
|
|
if NOT EXIST %BOOT%\winsetup.exe (
|
2022-12-29 10:49:17 +01:00
|
|
|
echo renaming Windows setup.exe to boot image ...
|
2021-03-16 23:23:06 +01:00
|
|
|
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
|
|
|
|
)
|
|
|
|
|
2022-12-29 10:49:17 +01:00
|
|
|
echo setting language in boot image ...
|
2023-01-22 20:09:39 +01:00
|
|
|
dism /image:%BOOT% /Set-InputLocale:%LANG% || exit /b 1
|
|
|
|
dism /image:%BOOT% /Set-SysLocale:%LANG% || exit /b 1
|
2021-03-21 00:08:41 +01:00
|
|
|
|
2021-03-18 00:08:40 +01:00
|
|
|
echo replacing setup.exe with our installer utility ...
|
|
|
|
copy /Y installer.exe %BOOT%\setup.exe
|
|
|
|
|
2023-01-02 16:00:47 +01:00
|
|
|
if EXIST ..\company\snapshot64.exe (
|
|
|
|
echo copying LICENSED snapshot64.exe to boot image ...
|
|
|
|
copy /Y ..\company\snapshot64.exe %BOOT%
|
2021-03-28 19:40:24 +02:00
|
|
|
) else (
|
2023-01-02 16:00:47 +01:00
|
|
|
echo copying STANDARD snapshot64.exe to boot image ...
|
2021-03-28 19:40:24 +02:00
|
|
|
copy /Y ..\software\snapshot64.exe %BOOT%
|
|
|
|
)
|
2021-03-22 00:39:55 +01:00
|
|
|
|
2022-12-29 10:49:17 +01:00
|
|
|
echo copy netuse helper script to boot image ...
|
2021-03-22 00:39:55 +01:00
|
|
|
copy /Y netuse.cmd %BOOT%
|
2021-03-21 00:08:41 +01:00
|
|
|
|
2021-03-16 23:23:06 +01:00
|
|
|
echo unmounting and committing changes to %SOURCES%\boot.wim ...
|
2023-01-22 20:09:39 +01:00
|
|
|
dism /Unmount-Wim /MountDir:%BOOT% /Commit || exit /b 1
|
2021-03-16 23:23:06 +01:00
|
|
|
|