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

PowerTip: Find PowerShell Aliases by Module

$
0
0

Summary: Use Windows PowerShell to find aliases by module.

Hey, Scripting Guy! Question How can I easily find which modules expose aliases?

Hey, Scripting Guy! Answer Use the Get-Alias cmdlet and pipe the results to the Sort-Object cmdlet (Sort is an alias), for example:

Get-Alias | sort modulename -Descending


Viewing all articles
Browse latest Browse all 3333

Trending Articles