私は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
ただし、これにより、現在のディレクトリを変更する代わりにエクスプローラウィンドウが開きます。