Set Powershell Aliases for cross environment development
You can check where the powershell profile is by doing $profile
.
PS C:\> $profile
C:\Users\andrew\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
Open or create the profile file by doing code $profile
.
Set-Alias -Name ll -Value Get-ChildItem
Set-Alias -Name open -Value explorer
Then I can use ll
and open
instead of dir
and explorer
.
Comments