Como posso seguir um atalho do windows no power shell?

9

Estou usando o powershell e tenho um atalho para o diretório de destino no diretório atual. Eu quero mudar o diretório atual para aquele apontado pelo atalho. Logicamente o que eu quero fazer é:

cd your-files-here.lnk

e acabe onde mais pontos. O que eu recebo é:

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

Eu tentei

ii your-files-here.lnk

Mas isso abre uma janela do explorador em vez de alterar o diretório atual.

    
por Matthew Scouten 23.02.2012 / 19:10

3 respostas

5

Você pode adicionar isso ao seu arquivo Microsoft.PowerShell_profile.ps1 . O comando cd funcionará conforme desejado.

remove-item alias:cd -force
function cd($target)
{
    if($target.EndsWith(".lnk"))
    {
        $sh = new-object -com wscript.shell
        $fullpath = resolve-path $target
        $targetpath = $sh.CreateShortcut($fullpath).TargetPath
        set-location $targetpath
    }
    else {
        set-location $target
    }
}
    
por 12.09.2014 / 21:18
8

Infelizmente, o Windows não facilita o trabalho com atalhos. Isso deve funcionar:

$sh = New-Object -COM WScript.Shell
cd $sh.CreateShortcut('your-files-here.lnk').TargetPath
    
por 23.02.2012 / 19:16
3

O atalho é uma necessidade?

Você pode usar um link do Windows para isso. Consulte mklink /? para obter mais informações sobre links / pontos de junção do Windows.

    
por 23.02.2012 / 19:23