PowerShell get-help 看不到概要和其他内容

PowerShell get-help 看不到概要和其他内容

我在 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参数将为您提供特定主题的所有可用帮助

您将看到链接、示例、注释、输出、输入和详细概要

相关内容