Summary: Find out which Windows PowerShell cmdlets have the most defined aliases.
How can I determine which Windows PowerShell cmdlets have the most aliases?
Use the Get-Alias cmdlet and group by the definition. Sort the count in a descending manner, and select the top 10 items. The following command accomplishes this task where gal is an alias for Get-Alias, group is an alias for Group-Object, sort is an alias for Sort-Object, and select is an alias for Select-Object.
gal | group definition | sort count -Descending | select -First 10