This may be a stupid question, but are the default aliases (e.g. cd) hardcoded in powershell or defined in a hidden "profile" script somewhere? I don't have any profiles set (per-user or system-wide) so I'm just wondering where the default ones come from.
|
|
|
They are "built in" but not immutable. Note: PS > (Get-Alias dir).Options AllScope PS > (Get-Alias gci).Options ReadOnly, AllScope As you can see, there is some partitioning of aliases by the For broad compatability, I only use the Also, because As a training exercise, and to test my scripts for compatibility, I sometimes remove the non-
There's a more gentle approach where you replace each alias with a new command that warns you that you're using one of the compatibility aliases, but lets you keep functioning. Also, you can change the PS > Set-Alias -Name sl -Value Get-ChildItem -Force -Option AllScope # BAD! PS > sl |
||||
|
|
|
Hardcoded, but retrievable (like most things "hidden" in powershell)
;-) |
|||||
|
|
Though I do not know the technical details I would say they are hardcoded and they are not configurable. They can be redefined or removed but the initial set is not under our control. |
|||
|
|