Ich verwende Powershell und habe eine Verknüpfung zu meinem Zielverzeichnis im aktuellen Verzeichnis. Ich möchte das aktuelle Verzeichnis in das Verzeichnis ändern, auf das die Verknüpfung zeigt. Logischerweise möchte ich Folgendes tun:
cd your-files-here.lnk
und landen wo über diesen Punkten. Was ich stattdessen bekomme ist:
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
Ich habe es versucht
ii your-files-here.lnk
Dies öffnet jedoch ein Explorer-Fenster, anstatt das aktuelle Verzeichnis zu ändern.