2025-12-16 10:20:31 -07:00
|
|
|
# Set-Alias
|
|
|
|
|
|
|
|
|
|
> A PowerShell command to set or modify alias.
|
|
|
|
|
> Note: `sal` can be used as an alias for `Set-Alias`.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/set-alias>.
|
2025-12-16 10:20:31 -07:00
|
|
|
|
|
|
|
|
- Create or reassign new alias:
|
|
|
|
|
|
|
|
|
|
`Set-Alias -Name {{text}} -Value {{command}}`
|
|
|
|
|
|
|
|
|
|
- Add a description to alias:
|
|
|
|
|
|
|
|
|
|
`Set-Alias -Name {{text}} -Value {{command}} -Description "{{description}}"`
|