Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find Related PowerShell Commands

$
0
0

Summary: Learn how to find related Windows PowerShell commands.

Hey, Scripting Guy! Question How can I find related commands in Windows PowerShell?

Hey, Scripting Guy! Answer Use the Get-Command cmdlet and sort by the ModuleName property.
           For example, to find commands that use the Get verb, use the following command:

Get-Command –Verb get | Sort modulename


Viewing all articles
Browse latest Browse all 3333

Trending Articles