Summary: Learn how to return only a specific number of Windows PowerShell cmdlets.
How can I find only four Windows PowerShell cmdlets that use the verb Get, without seeing a
long scrolling list of found cmdlets?
Use the TotalCount parameter of the Get-Command cmdlet, for example:
Get-Command -Verb get -TotalCount 4