418 B
418 B
Set-Alias
A PowerShell command to set or modify alias. Note:
salcan be used as an alias forSet-Alias. More information: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/set-alias.
- Create or reassign new alias:
Set-Alias -Name {{text}} -Value {{command}}
- Add a description to alias:
Set-Alias -Name {{text}} -Value {{command}} -Description "{{description}}"