21 lines
460 B
Batchfile
21 lines
460 B
Batchfile
@echo off
|
|
set SOURCES=c:\TEMP\W10\sources
|
|
|
|
if NOT EXIST %SOURCES%\install.esd (
|
|
echo.
|
|
echo [%0] ERROR: %SOURCES%\install.esd NOT found!
|
|
exit /b
|
|
)
|
|
|
|
echo deleting old install.wim ...
|
|
del %SOURCES%\install.wim 1>nul 2>nul
|
|
|
|
echo exporting image from %SOURCES%\install.esd ...
|
|
dism /Export-Image ^
|
|
/SourceImageFile:%SOURCES%\install.esd ^
|
|
/DestinationImageFile:%SOURCES%\install.wim ^
|
|
/SourceName:"Windows 10 Pro" ^
|
|
/Compress:Max ^
|
|
/CheckIntegrity
|
|
|