我在 Win8 上运行 PS2.0。
当我运行“get-help Get-ChildItem”时,我只看到名称和语法,概要、相关链接和其他信息在哪里?
答案1
您可以通过将-version
开关传递给 powershell.exe 来运行 PowerShell 2 Windows 8:
powershell.exe -version 2.0
如果您像这样运行 PowerShell 2,则帮助似乎会按预期工作:
PS > help gci
NAME
Get-ChildItem
SYNOPSIS
Gets the items and child items in one or more specified locations.
[...]
答案2
使用
PS > Get-Help Get-Member -full
该full
参数将为您提供特定主题的所有可用帮助
您将看到链接、示例、注释、输出、输入和详细概要