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.