w10install/wimscripts/finish-image.cmd

25 lines
682 B
Batchfile
Raw Normal View History

2020-12-25 20:08:46 +01:00
@echo off
set SOURCES=c:\TEMP\Win10\sources
set MNT=c:\TEMP\WIM
2020-12-24 14:58:04 +01:00
2020-12-25 20:08:46 +01:00
rd /S /Q %MNT%\Windows\Setup\scripts 1>nul 2>nul
mkdir %MNT%\Windows\Setup\scripts 1>nul 2>nul
rem copy SetupComplete script ...
copy /Y SetupComplete.cmd %MNT%\Windows\Setup\scripts
if %errorlevel% neq 0 exit /b %errorlevel%
dir %MNT%\Windows\Setup\scripts
2020-12-20 18:37:15 +01:00
dism /Image:%MNT% /Cleanup-Image /StartComponentCleanup /ResetBase
dism /Unmount-Wim /MountDir:%MNT% /Commit
2020-12-20 18:37:15 +01:00
2020-12-20 21:29:12 +01:00
dism /Export-Image ^
2020-12-21 16:40:22 +01:00
/SourceImageFile:%SOURCES%\install.wim ^
2020-12-21 10:45:53 +01:00
/DestinationImageFile:%SOURCES%\install_FINAL.esd ^
2020-12-21 16:40:22 +01:00
/SourceName:"Windows 10 Pro" ^
2020-12-21 10:45:53 +01:00
/Compress:Recovery ^
2020-12-20 23:30:53 +01:00
/CheckIntegrity
2020-12-20 18:37:15 +01:00
2020-12-25 20:44:39 +01:00
del /Q %SOURCES%\install.wim
2020-12-25 20:08:46 +01:00