PowerTip: Find PowerShell Aliases that Rename Commands

Doctor Scripto

Summary: Use Windows PowerShell to find aliases that rename commands.

Hey, Scripting Guy! Question How can I find Windows PowerShell aliases that rename commands?

Hey, Scripting Guy! Answer Use the Get-Alias cmdlet, pipe the results to Where-Object, and look for a hyphen in the name:

Get-Alias | Where name -Match '-' | select name, definition

0 comments

Discussion is closed.

Feedback usabilla icon