List PowerShell verbs

As you may be aware, PowerShell cmdlets are supposed to be named with a standard verb. I usually suggest that scripters name scripts and functions also using a standard verb, although it is not required and I certainly bend the rules from time to time.  Hopefully by now you’re saying to yourself, “Show me the verbs!”

Here’s a PowerShell oneliner:

$assembly = [System.Reflection.Assembly]::LoadWithPartialName("System.Management.Automation");$assembly.GetTypes() |  where { $_.Name -match "Verbs" } | foreach {  $_.GetFields() | foreach { $_.Name }   } | sort

You can also view the official MSDN documentation.