w10install/wim/finish-image.cmd

55 lines
1.5 KiB
Batchfile
Raw Normal View History

2021-01-14 00:03:49 +01:00
@echo off
set IMAGE=c:\TEMP\IMAGE
2021-03-31 10:28:39 +02:00
set SOURCES=c:\TEMP\W10\sources
2021-03-28 11:54:06 +02:00
set ESD=%SOURCES%\install.esd
set WIM=%SOURCES%\install.wim
2021-03-31 10:28:39 +02:00
set TEMPFILE=%SOURCES%\temp.esd
2021-01-14 00:03:49 +01:00
2021-03-28 11:54:06 +02:00
if NOT EXIST %WIM% (
echo.
2021-03-28 11:54:06 +02:00
echo [%0] ERROR: %WIM% NOT found!
exit /b
)
2021-01-14 00:03:49 +01:00
rd /S /Q %IMAGE%\Windows\Setup\scripts 1>nul 2>nul
mkdir %IMAGE%\Windows\Setup\scripts 1>nul 2>nul
2021-03-28 11:54:06 +02:00
echo [%0] INFO: copying scripts to %IMAGE%\Windows\Setup\scripts ...
copy /Y SetupComplete.cmd %IMAGE%\Windows\Setup\scripts
copy /Y StartCustomSetup.cmd %IMAGE%\Windows\Setup\scripts
copy /Y ..\tools\prompt-user.exe %IMAGE%\Windows\Setup\scripts
2021-03-28 11:54:06 +02:00
if %ERRORLEVEL% NEQ 0 (
echo [%0] ERROR: while copying scripts to IMAGE
exit /b
)
2021-01-14 00:03:49 +01:00
2021-03-28 11:54:06 +02:00
echo [%0] INFO: showing directory contents :
dir %IMAGE%\Windows\Setup\scripts
2021-01-14 00:03:49 +01:00
2021-03-28 11:54:06 +02:00
echo [%0] INFO: doing cleanup on mountpoint %IMAGE% ...
dism /Image:%IMAGE% /Cleanup-Image /StartComponentCleanup /ResetBase
2021-01-14 00:03:49 +01:00
2021-03-28 11:54:06 +02:00
echo [%0] INFO: unmounting and committing changes to %WIM% ...
dism /Unmount-Wim /MountDir:%IMAGE% /Commit
2021-01-14 00:03:49 +01:00
2021-03-28 11:54:06 +02:00
echo [%0] INFO: directory of %IMAGE% :
dir %IMAGE%
2021-01-14 00:03:49 +01:00
2021-03-31 10:28:39 +02:00
echo [%0] INFO: exporting %WIM% to %TEMPFILE% ...
2021-01-14 00:03:49 +01:00
dism /Export-Image ^
2021-03-28 11:54:06 +02:00
/SourceImageFile:%WIM% ^
2021-03-31 10:28:39 +02:00
/DestinationImageFile:%TEMPFILE% ^
2021-01-14 00:03:49 +01:00
/SourceName:"Windows 10 Pro" ^
/Compress:Recovery ^
/CheckIntegrity
2021-03-31 10:28:39 +02:00
echo [%0] INFO: renaming new esd file to %ESD% ...
move /Y %TEMPFILE% %ESD%
2021-03-28 11:54:06 +02:00
rem delete wim file only in case there is an esd file ...
if EXIST %ESD% (
echo [%0] INFO: deleting %WIM%
del /F %SOURCES%\install.wim 2>nul
)
2021-01-14 00:03:49 +01:00