Estoy usando powershell y tengo un acceso directo a mi directorio de destino en el directorio actual. Quiero cambiar el directorio actual al indicado por el acceso directo. Lógicamente, lo que quiero hacer es:
cd your-files-here.lnk
y terminar donde sobre esos puntos. Lo que obtengo en cambio es:
Set-Location : Cannot find path 'your-files-here.lnk' because it does not exist.
At C:\Windows\system32\WindowsPowerShell\v1.0\Modules\pscx\Modules\CD\Pscx.CD.psm1:111 char:17
+ Set-Location <<<< $path -UseTransaction:$UseTransaction
+ CategoryInfo : ObjectNotFound: (your-files-here.lnk:String) [Set-Location], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
Lo intenté
ii your-files-here.lnk
Pero esto abre una ventana del explorador en lugar de cambiar el directorio actual.