Add windows terminal to context menu

Microsoft released Windows terminal as a Microsoft Store app. How to add it to the context menu or replace 'Open Powershell window here' with it ?

Microsoft released Windows terminal as a Microsoft Store app. How to add it to the context menu or replace ‘Open Powershell window here’ with it ?

asked Apr 24, 2020 at 7:15

Steev James's user avatar

Steev JamesSteev James

2,0463 gold badges17 silver badges29 bronze badges

6

There might have been several approaches discussed everywhere, but none of them is up-to-date nor offers flexibility. So I started a new open source project and provided two PowerShell scripts to help.

https://github.com/lextm/windowsterminal-shell

You can run install.ps1 as administrator in PowerShell 7 to easily add the default layout.

enter image description here

There are other layouts (mini and flat at this moment).

Uninstall the menu items are also easy with uninstall.ps1.

answered May 7, 2020 at 16:34

Lex Li's user avatar

Lex LiLex Li

58.8k9 gold badges116 silver badges142 bronze badges

11

The Win-X Menu shortcuts are stored in %LOCALAPPDATA%MicrosoftWindowsWinX and in the ComputerHKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellCompatibilityInboxApp part of the registry, but the file explorer option is the one that really dictates what happens in the Win-X menu. I do not suggest just adding and changing stuff in the WinX folder because you could mess things up, however, the winaero.com/comment.php?comment.news.30 app in the link provides a way in which you wouldn’t mess it up. Either way, you should put "%programfiles%WindowsAppsMicrosoft.WindowsTerminal_0.11.1121.0_x64__8wekyb3d8bbweWindowsTerminal.exe" in either a shortcut in the WinX folder, or in the app named accordingly.
Win-X Menu with Windows Terminal

Community's user avatar

answered Apr 28, 2020 at 21:51

Nico Nekoru's user avatar

Nico NekoruNico Nekoru

2,6072 gold badges17 silver badges35 bronze badges

Comments

@yanglr

@yanglr
yanglr

added
the

Issue-Feature

Complex enough to require an in depth planning process and actual budgeted, scheduled work.

label

May 30, 2019

@msftbot
msftbot
bot

added

Needs-Triage

It’s a new issue that the core contributor team needs to triage at the next triage meeting

Needs-Tag-Fix

Doesn’t match tag requirements

labels

May 30, 2019

@yanglr
yanglr

changed the title
Is there a method to add «open Windows terminal here» to right-click context menu?

Is there a method to add «open Windows terminal here» into right-click context menu?

May 30, 2019

@DHowett-MSFT
DHowett-MSFT

changed the title
Is there a method to add «open Windows terminal here» into right-click context menu?

Add «open Windows terminal here» into right-click context menu

May 30, 2019

@DHowett-MSFT
DHowett-MSFT

removed
the

Needs-Triage

It’s a new issue that the core contributor team needs to triage at the next triage meeting

label

May 30, 2019

msftbot bot

pushed a commit
that referenced
this issue

May 28, 2020

@zadjii-msft

jelster

pushed a commit
to jelster/terminal
that referenced
this issue

May 28, 2020

@zadjii-msft

@jelster

@microsoft
microsoft

locked as resolved and limited conversation to collaborators

Jun 18, 2020

Cover image for How to add Open Windows Terminal in Context Menu

Priya Ranjan Kumar

The windows terminal is new sleek, fast, customizable and feature packed terminal. It is much more productive than previous Command prompt and PowerShell.

So, if you want to customize the Windows terminal then you can go to this post. The steps have been beautifully curated there.

So, let’s get back to adding the Context Menu option

Perquisites

  • Copy the downloaded icon to this folder

C:Users%USERPROFILE%AppDataLocalMicrosoftWindowsApps

Enter fullscreen mode

Exit fullscreen mode

  • Open Text editor copy and paste the following code into it and save as .reg file.
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwt]
@="Windows terminal here"
"Icon"="C:\Users\yourusername\AppData\Local\Microsoft\WindowsApps\terminal.ico"

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwtcommand]
@=""C:\Users\yourusername\AppData\Local\Microsoft\WindowsApps\wt.exe"  -d "%V""

Enter fullscreen mode

Exit fullscreen mode

  • Don’t forget to replace yourusername with your username like below.
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwt]
@="Windows terminal here"
"Icon"="C:\Users\mishr\AppData\Local\Microsoft\WindowsApps\terminal.ico"

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwtcommand]
@=""C:\Users\mishr\AppData\Local\Microsoft\WindowsApps\wt.exe"  -d "%V""

Enter fullscreen mode

Exit fullscreen mode

and save as whatevernameyouwant.reg.

  • Run the what_name_you_want.reg file

🤘😎

Alt Text

Windows Terminal ❤

Download PC Repair Tool to quickly find & fix Windows errors automatically

Almost a couple of years before Microsoft announced the release of several tools, services, APIs for computer geeks like us who like to tweak everything we lay our hands on. One of those things was Windows Terminal which wasn’t available for everyone then but is available now. We have seen how to change the Default Shell, now let us in this article, we will learn how to add or remove the option of “Open in Windows Terminal” to and from the context menu in Windows.

open-in-windows-terminal

For a good amount of time, we have been exposed to either using Command Prompt or Windows PowerShell; the Windows Terminal allows us to continue to experience the fun of both in a single environment with more additional features. Once you install the Windows Terminal, it will automatically start showing the option of Open in Windows Terminal. Sometimes it does happen that you will not find the option in the context menu and there can be multiple reasons behind it.

Related: How to open Windows Terminal as administrator in Windows 11.

Now to be able to add or remove the option from the context menu, we need to perform certain changes in the Windows Registry, which can be very tricky at times. One wrong step and your system will start behaving abnormally or won’t start at all. To avoid such problems, the methods mentioned below use registry files that can be added directly to the list of system registries.

Download this registry file from our server and unzip it. Before we begin, create a system restore point and then follow the steps given below. Make sure that the Windows Terminal is already installed or install it from the Windows Store.

The files contain the following codes:

Add:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShell ExtensionsBlocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=-

Remove:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShell ExtensionsBlocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=""

To add the option of Open in Windows Terminal in the context menu, navigate to the unzipped folder of registry files.

Double click on the Add_Open_in_Windows_Terminal.reg registry file.

Once you get a UAC prompt, click on Yes.add-open-in-terminal-registry

On the registry addition prompt, click on Ok.add-open-in-terminal-confirmation

Before you check if the option is available in the context menu or not, save all the work and restart your system. Now navigate to any folder or location, right-click on a file or blank space the option of Open in Windows Terminal will be present.

Read: Windows Terminal Tips and Tricks.

Remove “Open in Windows Terminal” from the context menu

To remove the option of Open in Windows Terminal in the context menu, navigate to the unzipped folder of registry files.

Double click on the Remove_Open_in_Windows_Terminal.reg registry file.

Once you get a UAC prompt, click on Yes.remove-open-in-terminal-registry

On the registry addition prompt, click on Ok.remove-open-in-terminal-confirmation

Again restart your system for the option to be removed from the context menu.

Remove Open in Windows Terminal Context Menu item by manually editing the Registry

Open the Registry Editor

Navigate the following Registry key-

HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShell ExtensionsBlocked

On the right side, modify or create a new string (REG_SZ) value and give it the following value:

{9F156763-7844-4DC4-B2B1-901F640F5155}

Leave its Value data empty

Restart your computer.

To undo the changes or add the item back, simply delete the created string value:

{9F156763-7844-4DC4-B2B1-901F640F5155}

You can also:

  • Add Open Windows Terminal as administrator to Context Menu
  • Add Open Windows Terminal in Default, Command Prompt, PowerShell profile context menu items.

TIP: If you wish, you can also reset Windows Terminal settings to default.

Ezoic

Shubham is a PHP Developer, who is skilled in PHP, DOM, Angular, JavaScript, and C#. He loves talking about Microsoft technologies.

You can add Open in Windows Terminal as Administrator to Context menu in Windows 10 File Explorer, so this entry will allow you to open the app elevated from the right-click menu in the current folder.

When you have Windows Terminal installed, it add the Open in Windows Terminal entry to the right-click menu of folders in File Explorer. In addition, you can add a new administrative menu command, so you can have the app open in the folder of your choice running elevated.

Windows Terminal is a modern terminal software for command-line users that has plenty of  features you won’t find in the classic Command Prompt and PowerShell tools. It comes with tabs, a GPU accelerated DirectWrite/DirectX-based text rendering engine, profiles, and more.

Thanks to profiles, you can have instances of Command Prompt, PowerShell, and Windows Subsystem for Linux running in tabs. Another great thing about the app is that it is fully open-sourced, so anyone can contribute. It is available on GitHub.

When installed, Windows Terminal adds a context menu command, Open in Windows Terminal, to the right-click of File Explorer. You can further enhance this feature by adding an extra command that opens the app with high privileges.

Add Open In Windows Terminal As Administrator Context Menu

This post will show you how to add Open Windows Terminal as Administrator to context menu in Windows 10 File Explorer.

  1. Download the following ZIP archive: Download ZIP archive.
  2. Extract its contents to any folder. You can place the files directly to the Desktop.
  3. Double click on the Add Open in Windows Terminal as administrator.reg file to merge it.
  4. To later remove the entry from the context menu, use the provided file Remove Open in Windows Terminal as administrator.reg.

You are done!

The Open in Windows Terminal as administrator right-click menu includes three options that you can use to open an elevated Windows Terminal in the current folder.

Add Open In Windows Terminal UAC Prompt

You will be able to choose the default profile, or one of the predefined extra profiles, Command Prompt and PowerShell. You can customize the downloaded REG files and add more profiles of your choice, e.g. WSL or any other custom profile.

Windows Terminal Running As Administrator In The Current Folder

How it works

The context menu entries use PowerShell to launch a new process with high privileges. The important command line arguments here are -WindowStyle Hidden which hides the PowerShell window, and Start-Process -Verb RunAs, which starts a process elevated.

The PowerShell process starts the following commands elevated for the respective right-click menu entries:

  • wt.exe -d folderpath to launch the Windows Terminal with the default profile in the current folder from File Explorer.
  • wt.exe -p "Command Prompt" -d folderpath — to open Windows Terminal using the default «Command Prompt» profile.
  • wt.exe -p "Windows PowerShell" -d folderpath — to open the default Windows PowerShell profile in Windows Terminal to the current folder location.

That’s it.

Support us

Winaero greatly relies on your support. You can help the site keep bringing you interesting and useful content and software by using these options:

If you like this article, please share it using the buttons below. It won’t take a lot from you, but it will help us grow. Thanks for your support!

Alongside PowerShell, you can also add Windows Terminal to right-click menu. Follow these steps to add ‘Open Windows Terminal Here’ option.

Windows Terminal is what the users have been asking for years. A new terminal application that is fully customizable all the while being powerful and flexible. Thanks to the new tabbed interface, you can open multiple consoles of different types at the same time and work with them as needed. In fact, I’ve been using it as my main console ever since it was released.

When working with directories, it is very useful to open the terminal in that specific directory. This eliminates the need to manually open the terminal and then navigate to that folder using multiple cd commands. Unfortunately, as of writing this, Windows Terminal has no such option. You are stuck with the old “Open PowerShell window here” option. Thankfully, you can add your own “Open Windows Terminal Here” option to the right-click menu in just a few steps.

Without ado, follow the below steps to add an open Windows Terminal here option to the right-click context menu in Windows 10.

1. First, we need to set the default directory in Windows Terminal. To do that, open Windows Terminal, click on the drop-down button on the title bar and select “Settings“. In the JSON file, add the below line to your default profile.

"startingDirectory": "."

If you are curious, we are adding this line because without it, when you open Windows Terminal from the right-click menu, it will open in your home directory rather than in the current directory.

Open-windows-terminal-here-windows-add-line-to-settings-file

2. Now, right-click on the desktop and select “New → Text Document” to create a new text file. Name the text file as “wt.reg“. This action converts the text file into the reg file.

Open-windows-terminal-here-windows-create-reg-file

3. Next, right-click on the newly created file and select “Edit“.

Open-windows-terminal-here-windows-select-edit

4. The above action will open the file in the default text editor. Here, copy and paste the below code in it. Don’t forget to replace “<Username>” with your actual Windows username. Save the file by pressing Ctrl + S or selecting “File → Save“.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwt]
 @="Open Windows Terminal here"

[HKEY_CLASSES_ROOTDirectoryBackgroundshellwtcommand]
 @="C:\Users\<UserName>\AppData\Local\Microsoft\WindowsApps\wt.exe"

Open-windows-terminal-here-windows-add-reg-code-to-file

5. Now, close the file and double-click on it. You will be prompted whether you want to merge the reg file. Click on the “Yes” button and then the “Ok” button.

Open-windows-terminal-here-windows-click-yesOpen-windows-terminal-here-windows-click-ok

That is it. From now on, whenever you Shift + Right-click in a directory or folder, you will see the new “Open Windows Terminal here” option in the right-click menu.

Open-windows-terminal-here-windows-added-to-right-click

Selecting the option will open Windows Terminal in that directory.

Open-windows-terminal-here-windows-terminal

(Optional) Add Icon to the Option

If you are willing to go the extra mile, you can add a little icon right before the option in the right-click menu. This is just eye candy and you can ignore it if you are not interested.

1. Download this official Windows Terminal icon.

2. After downloading, open the Run dialog box by pressing Win + R shortcut. In the blank field, copy and paste the below path and press Enter.

%USERPROFILE%/AppData/Local/

Open-windows-terminal-here-windows-run-dialog-box

3. In this folder, right-click and select “New → Folder” to create a new folder. Name the folder as “WTerminal“.

Open-windows-terminal-here-windows-create-folder

4. Now, copy the icon to the newly created folder.

Open-windows-terminal-here-windows-copy-icon-to-folder

5. Next, open the “Registry Editor” by searching for it in the start menu. In the Registry Editor, go to the following folder.

HKEY_CLASSES_ROOTDirectoryBackgroundshellwt

6. Right-click on the right-panel and select the “New → String Value” option. Name the value as “Icon“.

Open-windows-terminal-here-windows-create-new-value

7. Double-click on the “Icon” value. In the value data field, copy and paste the below path and click on the “Ok” button.

%USERPROFILE%/AppData/Local/WTerminal/terminal.ico

Open-windows-terminal-here-windows-set-icon-path

That is it. Close the registry editor. From now on, you should also see the terminal icon right next to the “Open Windows Terminal here” option.

Open-windows-terminal-here-windows-icon-added-to-right-click

I hope that helps. If you are stuck or need some help, comment below and I will try to help as much as possible.

Вы можете добавить Открыть Windows Terminal от Администратора в контекстное меню Проводника в Windows 10. Эта команда позволит вам открыть приложение с повышенными правами в любой папке.

Когда у вас установлен терминал Windows, он добавляет команду «Открыть в Windows Terminal» в контекстное меню папок в проводнике. В довесок к ней вы можете добавить ещё один пункт, чтобы иметь возможность открыть приложение с повышенными правами в выбранной папке.

Как добавить Открыть Windows Terminal от Администратора в контекстное меню

Терминал Windows — это современное программное обеспечение для пользователей командной строки, которое имеет множество функций, ранее недоступных в классических инструментах командной строки и PowerShell. Он имеет вкладки, продвинутые средства вывода текста на основе DirectWrite / DirectX с ускорением графики, профили для одновременной работы с PowerShell, cmd и WSL, и ещё много других возможностей.

Благодаря профилям у вас могут быть одновременно запущены экземпляры командной строки, PowerShell и подсистемы Windows для Linux, и вы сможете быстро переключаться между ними. Еще одна замечательная особенность приложения — это то, что его исходный код полностью открыт, так что любой разработчик сможет внести свой вклад в развитие программы.

После установки Windows Terminal добавляет команду контекстного меню «Открыть в Windows Terminal» в меню правой кнопкой мыши Проводника. Вы можете улучшить эту функцию, добавив дополнительную команду, которая открывает Windows Terminal с повышенными правами.

В этом статье будет показано, как добавить команду «Открыть Windows Terminal от Администратора» в контекстное меню проводника Windows 10.

  1. Скачайте этот ZIP-архив.
  2. Распакуйте его содержимое в любую папку. Вы можете разместить файлы прямо на рабочем столе.
  3. Дважды щелкните на файле Add Open in Windows Terminal as administrator.reg, чтобы добавить его в реестр операционной системы.файлы реестра

Это всё, что требуется. Изменения применяются моментально. Щелкните правой кнопкой мышки на любой папке в Проводнике, и вы увидите новое меню.

Add Open In Windows Terminal Context Menu

Совет: чтобы позже удалить запись из контекстного меню, используйте файл Remove Open in Windows Terminal as administrator.reg, который также включен в архив, который вы скачали.

Контекстное меню «Открыть Windows Terminal от Администратора» включает три пункта, которые можно использовать для открытия терминала Windows с повышенными привилегиями в текущей папке.

Запуск Windows Terminal от Администратора в выбранной папке

С помощью можно запустить Windows Terminal c профилем по умолчанию, или с одним из двух предопределенных профилей — Командная строка и PowerShell. Кроме того, вы можете отредактировать загруженные reg-файлы и добавить больше профилей по вашему вкусу, например WSL или любой другой профиль, который у вас есть.

Как это работает

Все пункты контекстного меню используют PowerShell для запуска нового процесса с правами администратора. Важными аргументами командной строки здесь являются -WindowStyle Hidden, который скрывает окно PowerShell, и Start-Process -Verb RunAs, который запускает процесс с повышенными правами.

Процесс PowerShell запускает следующие команды с повышенными правами для соответствующих записей контекстного меню:

  • wt.exe -d путькпапке для запуска терминала Windows с профилем по умолчанию в текущей папке из проводника.
  • wt.exe -p «Command Prompt» -d путькпапке — открыть Терминал Windows с использованием профиля «Командная строка».
  • wt.exe -p «Windows PowerShell» -d путькпапке — открыть профиль Windows PowerShell по умолчанию в Терминале Windows в текущем местоположении папки.

На этом всё.

💡Узнавайте о новых статьях быстрее. Подпишитесь на наши каналы в Telegram и Twitter.

Судя по тому, что вы читаете этот текст, вы дочитали эту статью до конца. Если она вам понравилась, поделитесь, пожалуйста, с помощью кнопок ниже. Спасибо за вашу поддержку!

How to add or remove the option of “Open in Windows Terminal” to and from the context menu in Windows 11.

Add/Remove Windows Terminal From Context Menu in Windows 11

Windows Terminal is a modern terminal software for command line users, with many features you won’t find in the classic Command Prompt and PowerShell tools. Its main features include multiple tabs, panes, Unicode and UTF-8 character support, a GPU accelerated text rendering engine, and custom themes, styles, and configurations. You can use it to open the app directly to a specific location. If you find yourself not using this command, you can easily remove it.

Remove Windows Terminal From Context Menu via regedit

( You can watch the how to video which located at the end of the article)

To remove the option of Open in Windows Terminal in the context menu, Open Run box (Windows+R ). Type Regedit and hit Enter. It will open the Registry Editor window.

Navigate to the following registry key:

HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShell ExtensionsBlocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=""

Add “Open in Windows Terminal” to the Context Menu

-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShell ExtensionsBlocked
Alternatively Use .vbe script To Add Or Remove “Open in Windows Terminal” context menu

1- We have coded a script to make your job easier, just download the No_Terminal.rar file at the end of the page (password:ceofix) and Unzip it.

2- Then simply double-click on the No_Terminal.vbe file Confirm the User Account Control dialog if prompted.

3- It will show a pop-up window with the text “Open in Windows terminal has been deleted“. Just Click ok button.

Remove Windows Terminal From Context Menu

First click will disable “Open in Windows Terminal” on the Context Menu.

Added Windows Terminal From Context Menu

Added Windows Terminal From Context Menu

Second click will added “Open in Windows terminal” on the Context Menu.

▼Download▼ Password:ceofix

Recommended For You

Revert Back To The Classic File Explorer Look On Windows 11 (ceofix.net)

Remove Show More Options Entry From Windows 11 Context Menu (ceofix.net)

Use New Context Menu and Legacy Context Menu in Windows 11 (ceofix.net)

Why Is Start, Taskbar & Action Center Greyed out Windows 11 (ceofix.net)

Show Or Hide The Taskbar Search Button on Windows 11 (ceofix.net)

Switch Beetwen Light And Dark Theme On Windows 11 (ceofix.net)

Best Way To Test Your Microphone On Windows 11 (ceofix.net)

Понравилась статья? Поделить с друзьями:
  • Adb драйвера скачать для windows xp x32
  • Adb драйвера скачать для windows 7 на русском
  • Adb драйвера скачать для windows 10 x64 xiaomi
  • Adb драйвера скачать для windows 10 x64 samsung
  • Adb драйвера для андроид скачать для windows 10