Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 36188

PowerTip: Find Commands from a PowerShell Module

$
0
0

Summary: Learn how to find specific types of commands from a Windows PowerShell module.

Hey, Scripting Guy! Question How can you list only cmdlets from a module that make new stuff?

Hey, Scripting Guy! Answer Use the Get-Command cmdlet with the Module parameter, and specify the New verb (gcm is an alias for Get-Command):

gcm -Module hyper* -Verb new


Viewing all articles
Browse latest Browse all 36188

Trending Articles