当我看到参数末尾列出的 –CommandCapability 时,我正在研究 PowerShell 3 中的 Get-Command。
我的问题是如何让这个 –CommandCapability 参数起作用?
当我看到参数末尾列出的 –CommandCapability 时,我正在研究 PowerShell 3 中的 Get-Command。
我的问题是如何让这个 –CommandCapability 参数起作用?
获取命令 | 选择能力应该会给你一些线索。还有Get-Command | 组能力查看可能的选项。
基本上,它可以区分“普通”cmdlet、脚本、CIM cmdlet 和工作流。我会说它是对当前现有的 CommandType(s) 分类的扩展。
@Guy - 我在最新发布的 PowerShell V3 中没有看到 -CommandCapability:
Parameter Set: CmdletSet
Get-Command [[-ArgumentList] <Object[]> ] [-All] [-ListImported] [-Module <String[]> ] [-Noun <String[]> ] [-ParameterName <String[]> ] [-ParameterType <PSTypeName[]> ] [-Syntax] [-TotalCount <Int32> ] [-Verb <String[]> ] [ <CommonParameters>]
Parameter Set: AllCommandSet
Get-Command [[-Name] <String[]> ] [[-ArgumentList] <Object[]> ] [-All] [-CommandType <CommandTypes> ] [-ListImported] [-Module <String[]> ] [-ParameterName <String[]> ] [-ParameterType <PSTypeName[]> ] [-Syntax] [-TotalCount <Int32> ] [ <CommonParameters>]
你是说CommandType吗?