PowerTip: Use PowerShell Out-GridView to Explore Cmdlets

Doctor Scripto

Summary: Use the Windows PowerShell Out-GridView cmdlet to aid in exploring cmdlets.

Hey, Scripting Guy! Question How can I use Windows PowerShell to graphically explore cmdlets provided by the Hyper-V module and filter by verb?

Hey, Scripting Guy! Answer 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

0 comments

Discussion is closed.

Feedback usabilla icon