如果我运行get-help get-member
,则所有内容都按预期输出(对于非通配符搜索,我没有运行get-help
的任何错误。)
然而,执行get-help get-*
(根据this example)它输出93个命令(最后一个是Get-TroubleshootingPack
),然后(挂起约10秒后)它会抛出以下内容错误:
get-help : Unrecoverable error in Windows PowerShell.
At line:1 char:1
+ get-help get-*
+ ~~~~~~~~~~~~~~
+ CategoryInfo : ParserError: (:) [Get-Help], ParseException
+ FullyQualifiedErrorId : Parse,Microsoft.PowerShell.Commands.GetHelpCommand
我对PowerShell环境很陌生,但我在个人笔记本电脑上运行此命令就好了。我在工作桌面上运行时遇到上述错误。
编辑:实际上,我发现运行get-help set-member
会产生与通配符相同的错误。