As we have already mentioned, it is simple to think in PowerShell. When we know that the verb to fetch any information locally is Get, and the noun in this case would be Alias, the cmdlet should be Get-Alias :
- Run Get-Help to understand how to use the cmdlet:
PS> Get-Help Get-Alias
- According to the help documentation, all of the parameters for Get-Alias are optional (they are all enclosed in []). Therefore, simply running ...