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

PowerTip: Is It a PowerShell Alias?

$
0
0

Summary: Quickly find multiple Windows PowerShell aliases.

Hey, Scripting Guy! Question I have a bunch of Windows PowerShell commands I have been using, but they seem to act strangely sometimes.
          I need to know if they are aliases or real commands. How can I tell?

Hey, Scripting Guy! Answer Use the Get-Alias cmdlet to look up aliases and resolve them to Windows PowerShell cmdlet names.
          You can do this in a single command because the –Name parameter accepts an array of aliases, for example:

Get-Alias -Name sort, select, foreach, where, dir, cls


Viewing all articles
Browse latest Browse all 3333

Trending Articles