如何在 PowerShell 中获得 cmdlet 支持的参数?
要了解哪些参数受 cmdlet 支持,Get-Command 会检索命令的属性。例如,我们需要找到 Get-Process 参数,Get-Command 会检索该命令信息,完整列表会给你提供该属性。
Get-Command Get-Process | fl
一旦运行命令,就会显示 ParameterSets 属性,这些属性是 cmdlet 支持的参数。
PS C:\> (Get-Command Get-Process).ParameterSets |ft -AutoSize Name IsDefault Parameters ---- --------- ---------- Name True {Name, ComputerName, Module, FileVersionInfo..} NameWithUserName False {Name, IncludeUserName, Verbose, Debug...} IdWithUserName False {Id, IncludeUserName, Verbose, Debug...} Id False {Id, ComputerName, Module, FileVersionInfo...} InputObjectWithUserName False {InputObject, IncludeUserName, Verbose, Debug…} InputObject False {InputObject, ComputerName, Module, FileVersionInfo...}
上述 Name 属性是受支持的参数。
广告