How to add Windows Terminal to the Windows Explorer context menu as “👩💻 Windows Terminal Here” ❔
The Windows context menu option ‘👩💻 Windows Terminal Here’ is handy to open Windows Terminal from Windows or Windows Explorer, mantendo o mesmo caminho.
This tutorial assumes that Windows PowerShell is run as default when Windows Terminal is started
- Edit the registry as follows…
Inicie o Editor do Registro
Win Key + R -> regedit -> Click OK
Mostrar a barra de endereços no Editor do Registro, se ele já não estiver mostrando
View -> Address Bar
-
Add the first registry entry to create the icon in the menu…
Caminho do registro:
HKEY_CLASSES_ROOT\Directory\Background\shellRight click shell -> New -> Key
Nomeie a chave
TerminalEdite o (Padrão) corda para
Windows Terminal HereRight click the new key Terminal -> New -> String
Name the new string
IconDownload the Windows Terminal Icon…
Open the Icon string and set the value as follows replacing {path to icon} com o seu próprio caminho:
{path to icon}terminal.ico -
Adicione a segunda entrada do Registro
Caminho do registro:
HKEY_CLASSES_ROOT\Directory\Background\shell\TerminalRight click Terminal -> New -> Key
Name the new key
commandNo comando, set the value of (Padrão):
wt -d . -
Adicionar a terceira entrada de registro
Caminho do registro:
HKEY_CLASSES_ROOT\Directory\shellRight click shell -> New -> Key
Nomeie a chave
TerminalEdite o (Padrão) corda para
Windows Terminal HereRight click the new key Terminal -> New -> String
Name the new string
IconAbrir Ícone e definir o valor da seguinte maneira substituindo {path to icon} com o seu próprio caminho:
{path to icon}terminal.ico -
Adicionar a quarta entrada de registro
Caminho do registro:
HKEY_CLASSES_ROOT\Directory\shell\TerminalRight click Terminal -> New -> Key
In the new command key, definir o valor padrão:
wt -d .
O menu de contexto agora deve estar funcionando. Right click on the desktop and click Windows Terminal Here. Windows Terminal should open with PowerShell with the present working directory as your desktop.
