Answers:
绝对,让我们为Google发布一个基本而恰当的答案。这是使用dism
模块执行Powershell的简单2命令。可以将dism复制到Windows的早期版本中,前提是您具有Windows管理框架的适当版本。
首先,使用以下命令挂载vhd
Mount-WindowsImage -ImagePath C:\VHDs\BigHomies.vhdx -Path C:\VHDMount -Index 1
然后,用
New-WindowsImage -CapturePath C:\VHDMount -Name Win7Image -ImagePath C:\CapturedWIMs\Win7.wim -Description "Yet another Windows 7 Image" -Verify
让它做事情。完成后,可以使用以下方法卸载vhd并放弃所有更改:
Dismount-WindowsImage -Path C:\VHDMount -Discard
New-WindowsImage
命令上?我想知道是否正在使用vhdx,否则无法将其锁定。