Is it possible in PowerShell to create alias for path?
For example: I have to write all time
PS PS C:\Users\Jacek>cd C:\windows\microsoft.net\framework\v4.0.30319
I will happy if I could write
PS PS C:\Users\Jacek>cd dotNet4path
Is it possible in PowerShell to create alias for path?
For example: I have to write all time
PS PS C:\Users\Jacek>cd C:\windows\microsoft.net\framework\v4.0.30319
I will happy if I could write
PS PS C:\Users\Jacek>cd dotNet4path
Inspired by @Loïc MICHEL -
`Updated variant for PS 5.1:
set alias to long path using New-PSDrive
Using persist and defining -Root value as network shared path (on local system but appears 'remote') drive F: will persist across PS sessions
change < > entries to your UNC shared path (need to share it first, can select yourself as only authorized user)`
New-PSDrive -Name "F" -Persist -PSProvider "FileSystem" -Root "\\"
You could just create a variable in your powershell profile with that path as the value.
Then all you would need to do is something like
To add something to your profile profile, type $profile, into a powershell window and it will display the path to your powershell profile file. Create it if it does not exist.
Then put this line in the file, save and restart powershell.
you could use an alias to execute a custom function (you may want to do this in your profile) or use a psdrive :
You could use your powershell profile to store the path in a variable:
If you restart your powershell, you can type