Summary: Learn how to group Windows PowerShell cmdlet counts by version.
How can I see the version of the modules that contain various cmdlets in Windows PowerShell 5.0?
Use the Get-Command cmdlet to return all of the cmdlets, and then pipe the results to the Group-Object
cmdlet and group and sort by version.
gcm | group version | sort version -Descending
Note gcm is an alias for Get-Command, group is an alias for Group-Object, and sort is an alias for Sort-Object.