Summary: Learn how to find your personally created Windows PowerShell aliases.
I need a way to identify personally created Windows PowerShell aliases. How can I easily do this?
When creating a custom alias, specify the Description property. You can then search for aliases that use that description, as shown here.
New-Alias -Name dog -Value get-content -Description 'mred alias'
Get-Alias | ? description -match 'mred'