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

PowerTip: Find PowerShell Cmdlets and Synopsis

$
0
0

Summary: Use Windows PowerShell to find cmdlets and their associated synopsis.

Hey, Scripting Guy! Question How can I easily find a list of specific Windows PowerShell cmdlets and their associated meanings?

Hey, Scripting Guy! Answer Use the Get-Command cmdlet, pipe the results to the Foreach-Object and Get-Help cmdlets,
           then select the name and synopsis, for example:

gcm -Noun item* | % {get-help $_} | ft name, synopsis


Viewing all articles
Browse latest Browse all 3333

Trending Articles