Tôi đang sử dụng powershell và tôi có một lối tắt đến thư mục đích của tôi trong thư mục hiện tại. Tôi muốn thay đổi thư mục hiện tại thành thư mục được trỏ đến bằng phím tắt. Theo logic, điều tôi muốn làm là:
cd your-files-here.lnk
và gió lên trên những điểm đó. Thay vào đó, những gì tôi nhận được là:
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
Tôi đã thử
ii your-files-here.lnk
Nhưng điều này sẽ mở một cửa sổ explorer thay vì thay đổi thư mục hiện tại.