w10install/image/finish-boot.cmd
Michael H.G. Schmidt c879f10d4b testing ...
2022-12-29 10:49:17 +01:00

43 lines
1011 B
Batchfile

@echo off
set SOURCES=c:\TEMP\W10\sources
set BOOT=c:\TEMP\BOOT
if EXIST ..\settings.cmd (
call ..\settings.cmd
) else (
set LANG=en-US
)
echo LANG=%LANG%
if NOT EXIST %BOOT%\winsetup.exe (
echo renaming Windows setup.exe to boot image ...
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
)
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 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 image ...
copy /Y netuse.cmd %BOOT%
echo showing boot image contents ...
dir %BOOT%
echo unmounting and committing changes to %SOURCES%\boot.wim ...
dism /Unmount-Wim /MountDir:%BOOT% /Commit
echo directory of %BOOT% :
dir %BOOT%