esd / wim ???

This commit is contained in:
Michael H.G. Schmidt 2021-03-28 00:07:37 +01:00
parent f48905d1e0
commit ea75957279

View File

@ -1,30 +1,28 @@
@echo off @echo off
set SOURCES=c:\TEMP\W10\sources set SOURCES=c:\TEMP\W10\sources
set WIM=%SOURCES%\install.esd set WIM=%SOURCES%\install
if NOT EXIST %WIM% ( if NOT EXIST %WIM%.esd (
echo. echo.
echo [%0] WARNING: %WIM% NOT found! echo [%0] WARNING: %WIM%.esd NOT found!
rem search for "install.wim" ... rem search for "install.wim" ...
set WIM=%SOURCES%\install.wim if NOT EXIST %WIM%.wim (
if NOT EXIST %WIM% ( echo [%0] ERROR: %WIM%.wim also NOT found!
echo [%0] ERROR: %WIM% also NOT found!
exit /b exit /b
) else ( ) else (
rem rename WIM file ... rem rename WIM file ...
move /Y %WIM% %SOURCES%\install-orig.wim move /Y %WIM%.wim %WIM%-orig.wim
set WIM=%SOURCES%\install-orig.wim
) )
) )
echo deleting "old" install.wim ... echo deleting "old" install.wim ...
del %SOURCES%\install.wim 1>nul 2>nul del %WIM%.wim 1>nul 2>nul
echo exporting image from %WIM% ... echo exporting image from %WIM%-orig.wim ...
dism /Export-Image ^ dism /Export-Image ^
/SourceImageFile: %WIM% ^ /SourceImageFile: %WIM%-orig.wim ^
/DestinationImageFile:%SOURCES%\install.wim ^ /DestinationImageFile:%WIM%.wim ^
/SourceName:"Windows 10 Pro" ^ /SourceName:"Windows 10 Pro" ^
/Compress:None ^ /Compress:None ^
/CheckIntegrity /CheckIntegrity