Summary: Use Windows PowerShell to find aliases that rename commands.
How can I find Windows PowerShell aliases that rename commands?
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