Summary: Use Windows PowerShell to find aliases by module.
How can I easily find which modules expose aliases?
Use the Get-Alias cmdlet and pipe the results to the Sort-Object cmdlet (Sort is an alias), for example:
Get-Alias | sort modulename -Descending