DISM常用命令

相关文章推荐:
Windows ADK 下载地址:https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install

命令示例:
https://blog.csdn.net/ponew/article/details/62225603
https://wenku.baidu.com/view/63b58d1fad51f01dc381f19f.html
https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/use-dism-in-windows-powershell-s14

Gimagex图形化演示:
https://www.iplaysoft.com/gimagex.html

以下命令由DISMGUI生成,原汁原味
1.首次备份镜像

/Capture-Image 创建命令
/ImageFile:保存的路径及名称
/Name:"名称 "
/Compress:(None默认 / Fast快速的 / Maxinum最大压缩的)
/verify验证】

dism.exe /Capture-Image /ImageFile:C:\Users\xxx\Desktop\wim\install.wim /CaptureDir:D:\ /Name:"0608201901" /Compress:Fast /verify

2还原镜像
/Apply-Image 还原镜像
/ImageFile wim镜像路径
/index:1 选择映像卷
/ApplyDir:E:\ 还原到E盘
未开启验证

dism.exe /Apply-Image /ImageFile:C:\Users\xxx\Desktop\wim\install.wim /index:1 /ApplyDir:E:\

开启验证

dism.exe /Apply-Image /ImageFile:C:\Users\xxx\Desktop\wim\install.wim /index:1 /ApplyDir:W:\ /Verify

你可能感兴趣的:(Windows)