Convert windows ESD file to WIM file: Difference between revisions

From The Power of Many
ESD WIM
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
转换后的install.vim 文件在  
转换后的install.vim 文件在  
  C:\WINDOWS\system32
  C:\WINDOWS\system32
[[Category:Windows]]

Latest revision as of 07:52, 28 June 2020

新版win10 image(1909)中已经使用ESD压缩方式而不是以前的WIM,新的压缩方式效率更高。

对于使用WDS/MDT/SCCM工具部署windows的,需要将ESD文件转换为wim文件才能使用。

使用DISM命令转换

C:\WINDOWS\system32>dism /Get-WimInfo /WimFile:"D:\Temp\win10\sources\install.esd"

C:\WINDOWS\system32>dism /export-image /SourceImageFile:"D:\Temp\win10\sources\install.esd" /SourceIndex:6 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

转换后的install.vim 文件在

C:\WINDOWS\system32