使用适用于 Windows 8.1 的 ADK,以及随附的 DISM cmdlet。我安装了 WMF 4.0。我的机器是 Windows 7 x64 SP1,我正在尝试使用
PS C:\Users\BigHomie> Mount-WindowsImage -ImagePath 'C:\Program Files (x86)\Windows
Kits\8.1\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\
en-us\winpe.wim' -Path C:\WinPE_x86 -index 1
并收到以下错误:
Mount-WindowsImage : DismInitialize failed. Error code = 0x8007007e
At line:1 char:1
+ Mount-WindowsImage -ImagePath 'C:\Program Files (x86)\Windows
Kits\8.1\Assessmen ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
+ CategoryInfo : NotSpecified: (:) [Mount-WindowsImage], COMExcep
tion
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.MountWindowsImageCommand
使用 dism.exe 工作正常。
更新
忘记了我有这个问题,我去使用 Powershell ISE 安装了一个 wim,实际上得到了一个关于的视觉错误消息
"C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\x86\DISM\api-ms-win-downlevel-advapi32-l4-1-0.dll"
没有被安装。在检查该 dll 确实存在于我调用 regsvr32 的文件夹中并收到另一条错误消息后
将尝试按照建议重新安装。
将 dism 模块的路径添加到环境变量路径示例:$env:Path = ($env:Path + ";C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64 \DISM")