Summary: Learn how to find information about Windows PowerShell cmdlet parameter sets.
How can I find information about the various parameter sets for a specific Windows PowerShell cmdlet?
Use Get-Command to return cmdlet information, pipe the results to the Select-Object cmdlet,
and expand the ParameterSets property:
Get-Command Stop-Process | select -expand parametersets