Summary: Learn how to find the top five nouns in Windows PowerShell cmdlets.
How can I find which nouns are the most prevalent in Windows PowerShell cmdlets?
You need to find all of the cmdlet names, group them by noun, sort them by count, and then select only
the first five, for example:
gcm * -CommandType cmdlet | group noun -noelement | sort count -Descending | select -First 5
Note gcm is an alias for Get-Command.