POSH TIP: Get all Powershell Alias
Use the Get-Alias cmdlet to find all alias available in Powershell console. Like below..
Get-Alias
And in case you want to find an particular alias, use the name parameter like below (write is one of the alias)
Get-Alias -name ‘write’
The name also accepts wildcards. If you want to find all alias starting with character ‘w’, use the name parameter like below
Get-Alias -name ‘w*’
Leave a comment