0

如果我尝试运行以下代码行,则会出现以下异常:

错误

Get-TroubleshootingPack : Es wurde kein Positionsparameter gefunden, der das Argument "Invoke-TroubleshootingPack" akzeptiert.
In Zeile:4 Zeichen:16
+ $PrinterPack = Get-TroubleshootingPack @TroubleshootingPack Invoke-Troubleshooti ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : InvalidArgument: (:) [Get-TroubleshootingPack], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Diagnosis.Commands.GetTroubleshootingPack

代码

$TroubleshootingPack = @{
Path = "$env:windir\diagnostics\system\printer"
}
$PrinterPack = Get-TroubleshootingPack @TroubleshootingPack Invoke-TroubleshootingPack -Pack $PrinterPack

我不明白这个问题,因为我的代码看起来像是从帮助中修改代码:

get-troubleshootingpack -path C:\Windows\Diagnostics\System\Aero | invoke-troubleshootingpack
4

2 回答 2

0

试试这个

Get-TroubleshootingPack @TroubleshootingPack | Invoke-TroubleshootingPack

或这个

$PrinterPack = Get-TroubleshootingPack @TroubleshootingPack
Invoke-TroubleshootingPack -Pack $PrinterPack
于 2012-11-03T16:34:54.137 回答
0

唯一的问题是缺少换行符

$TroubleshootingPack = @{
Path = "$env:windir\diagnostics\system\printer"
}
$PrinterPack = Get-TroubleshootingPack @TroubleshootingPack
Invoke-TroubleshootingPack -Pack $PrinterPack

上面的代码现在可以正常工作了

于 2012-11-05T19:29:47.730 回答