2021-03-16 23:23:06 +01:00
|
|
|
@echo off
|
|
|
|
set SOURCES=c:\TEMP\W10\sources
|
|
|
|
set BOOT=c:\TEMP\BOOT
|
|
|
|
|
|
|
|
if NOT EXIST %BOOT%\winsetup.exe (
|
2021-03-18 00:08:40 +01:00
|
|
|
echo renaming Windows setup.exe to boot ...
|
2021-03-16 23:23:06 +01:00
|
|
|
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
|
|
|
|
)
|
|
|
|
|
2021-03-18 00:08:40 +01:00
|
|
|
echo replacing setup.exe with our installer utility ...
|
|
|
|
copy /Y installer.exe %BOOT%\setup.exe
|
|
|
|
|
|
|
|
echo showing boot contents ...
|
|
|
|
dir %BOOT%
|
2021-03-16 23:23:06 +01:00
|
|
|
|
|
|
|
echo unmounting and committing changes to %SOURCES%\boot.wim ...
|
|
|
|
dism /Unmount-Wim /MountDir:%BOOT% /Commit
|
|
|
|
|
|
|
|
echo directory of %BOOT% :
|
|
|
|
dir %BOOT%
|
|
|
|
|