Summary: Use the Windows PowerShell Out-GridView cmdlet to aid in exploring cmdlets.
How can I use Windows PowerShell to graphically explore cmdlets provided by the Hyper-V module and filter by verb?
Use the Get-Command cmdlet and specify the Hyper-V module. Select the name, verb, noun, and definition
properties and pipe the results to the Out-GridView cmdlet:
Get-Command -Module Hyper-V | Select name, verb, noun, definition | Out-GridView