PS C:\ProgramData\Microsoft\Windows\Hyper-V\BigHomie> New-WindowsImage -CapturePath K: -ImagePath C:\VHDImports\Win764.wim -name "BigHomies Personal Image" -Verify -CompressionType "Max"
引发以下错误:
New-WindowsImage : The given key was not present in the dictionary.
At line:1 char:1
+ New-WindowsImage -CapturePath K: -ImagePath C:\VHDImports\Win764.wim -name " ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [New-WindowsImage], KeyNotFoundException
+ FullyQualifiedErrorId : System.Collections.Generic.KeyNotFoundException,Microsoft.Dism.Commands.NewWindowsImageC
ommand
我会说在不带-CompressionType
参数运行的情况下运行此命令并提供未压缩的 .wim 文件。在不为参数提供参数的情况下运行此命令-CompressionType
会产生一个错误,我需要提供类型为 的参数System.String
。
谷歌几乎没有发现这个特定的错误,这些似乎都不适用于我的情况,而且这些结果都不是关于 powershell 发生的错误,更不用说这个特定的 cmdlet。