Summary: Learn how to use the Get-Command cmdlet to resolve an alias to a Windows PowerShell command.
How can I find if a Windows PowerShell command is an alias?
Use the Get-Command cmdlet, for example:
gcm gwmi
Note: gcm is an alias for Get-Command.
0 comments