我正在使用Powershell,并且在当前目录中有指向我的目标目录的快捷方式。我想将当前目录更改为快捷方式指向的目录。逻辑上我想做的是:
cd your-files-here.lnk
然后结束那一点。我得到的是:
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
我试过了
ii your-files-here.lnk
但这会打开资源管理器窗口,而不是更改当前目录。