I've created a symbolic link like so:
PS C:\dev\bin> cmd /c mklink "wd" c:\dev\code
symbolic link created for wd <<===>> c:\dev\code
OK, simple. So then I try to cd to it:
PS C:\dev\bin> cd wd
Set-Location : Cannot find path 'wd' because it does not exist.
PS C:\dev\bin> cd .\wd
Set-Location : Cannot find path '.\wd' because it does not exist.
PS C:\dev\bin> cd \wd
Set-Location : Cannot find path 'C:\wd' because it does not exist.
It is soooo much easier to do this in Linux. How do I actually cd to a symlink in PowerShell?
(It seems like a simple question, but the first 3 pages of google results didn't have an answer.)