Summary: Find aliases that were exported from a Windows PowerShell module.
How can I find aliases that were exported from a particular module on my system?
Use the Get-Command cmdlet, specify the module, pipe the results to the
Foreach-Object cmdlet, and then look for aliases:
Get-Command -Module CimCmdlets | foreach { Get-Alias -Definition $_.name -ea 0 }