Truque para abrir o Powershell no diretório aberto?

2

Se você digitar "cmd" na barra de endereços de uma janela, ela abrirá a linha de comando nesse diretório. Existe uma maneira de fazer isso com o powershell, evitando que você navegue para um recesso profundo da sua tabela de arquivos?

    
por Veta 21.08.2015 / 08:10

1 resposta

2

Adicionei o PowerShell ao meu shell, por isso, se clicar com o botão direito em uma pasta ou no plano de fundo de uma pasta, recebo uma opção "Abrir o PowerShell aqui" que abre o PowerShell no diretório selecionado ou atual.

Basta adicionar estas chaves de registro:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell]
@="Open PowerShell Here"

[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell\command]
@="C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command Set-Location -LiteralPath '%V'"

[HKEY_CLASSES_ROOT\Directory\shell\powershell]
@="Open PowerShell Here"

[HKEY_CLASSES_ROOT\Directory\shell\powershell\command]
@="C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"

[HKEY_CLASSES_ROOT\LibraryFolder\background\shell\powershell\command]
@="C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command Set-Location -LiteralPath '%V'"

Deve conseguir colar o texto acima em um arquivo de texto e alterar a extensão para .reg e importá-lo.

    
por 03.09.2015 / 15:16