如何在PowerShell中获取cmdlet的受支持参数?
若要知道cmdlet支持哪些参数,Get-Command将检索命令的属性。例如,我们需要找到Get-Process参数,以便Get-Command将检索命令信息,而FullList将为您提供属性。
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属性是受支持的参数。