w10install/image/finish-boot.cmd

42 lines
1.0 KiB
Batchfile
Raw Normal View History

@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
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%
if NOT EXIST %BOOT%\winsetup.exe (
2022-12-29 10:49:17 +01:00
echo renaming Windows setup.exe to boot image ...
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
)
2022-12-29 10:49:17 +01:00
echo setting language in boot image ...
2021-03-21 00:08:41 +01:00
dism /image:%BOOT% /Set-InputLocale:%LANG%
dism /image:%BOOT% /Set-SysLocale:%LANG%
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
2022-12-29 10:49:17 +01:00
echo showing boot image contents ...
2021-03-18 00:08:40 +01:00
dir %BOOT%
echo unmounting and committing changes to %SOURCES%\boot.wim ...
dism /Unmount-Wim /MountDir:%BOOT% /Commit