mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 01:43:17 +00:00
19 lines
506 B
Plaintext
19 lines
506 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, windows]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# Set-Alias
|
|
|
|
> A PowerShell command to set or modify alias.
|
|
> Note: `sal` can be used as an alias for `Set-Alias`.
|
|
> More information: <https://learn.microsoft.com/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}}"`
|