w10install/wim/finish-image.cmd

34 lines
975 B
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 WIM=%SOURCES%\install.wim
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
2022-12-25 14:00:19 +01:00
copy /Y ..\tools\prompt-user.exe %IMAGE%\Windows
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 %IMAGE%\Windows\prompt-user.exe
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