PowerShell Quick Tip: Get alias for a cmdlet
Below shows how to get the aliases for Remove-Item cmdlet.PS C:\prj> Get-Alias -Definition Remove-Item CommandType Name Version Source ----------- ---- ------- ------ Alias del -> Remove-Item Alias erase -> Remove-Item Alias rd -> Remove-Item Alias ri -> Remove-Item Alias rm -> Remove-Item Alias rmdir -> Remove-Item
Comments