尝试使用 Powershell 在 Windows 7 中安装 WinPE 5 wim 时出现错误 0x8007007e

尝试使用 Powershell 在 Windows 7 中安装 WinPE 5 wim 时出现错误 0x8007007e

使用适用于 Windows 8.1 的 ADK 以及随附的 DISM cmdlet。我安装了 WMF 4.0。我的机器是 Windows 7 x64 SP1,我正在尝试使用以下方式安装 wim

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 并收到其他错误信息

在此处输入图片描述

将尝试按照建议重新安装。

答案1

将dism模块的路径添加到环境变量路径示例:$env:Path = ($env:Path + ";C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64\DISM")

相关内容