How to remove "Open in Windows Terminal" from context menu? #9735

Closed
opened 2026-01-31 02:02:32 +00:00 by claunia · 14 comments
Owner

Originally created by @4k3or3et on GitHub (Jul 22, 2020).

Hi All

how to remove "Open in Windows Terminal" from context menu?

I was looking into Registry but could not find anything...

What is the implementation of that feature?

Thank you.

Originally created by @4k3or3et on GitHub (Jul 22, 2020). Hi All how to remove "Open in Windows Terminal" from context menu? I was looking into Registry but could not find anything... What is the implementation of that feature? Thank you.
claunia added the Issue-FeatureResolution-Duplicate labels 2026-01-31 02:02:32 +00:00
Author
Owner

@DHowett commented on GitHub (Jul 22, 2020):

It can't be removed right now. We're tracking a workitem to only show it when SHIFT is held down.

We're not going to add the ability to delete it entirely. Sorry.

/dup #6113

@DHowett commented on GitHub (Jul 22, 2020): It can't be removed right now. We're tracking a workitem to only show it when SHIFT is held down. We're not going to add the ability to delete it entirely. Sorry. /dup #6113
Author
Owner

@ghost commented on GitHub (Jul 22, 2020):

Hi! We've identified this issue as a duplicate of another one that already exists on this Issue Tracker. This specific instance is being closed in favor of tracking the concern over on the referenced thread. Thanks for your report!

@ghost commented on GitHub (Jul 22, 2020): Hi! We've identified this issue as a duplicate of another one that already exists on this Issue Tracker. This specific instance is being closed in favor of tracking the concern over on the referenced thread. Thanks for your report!
Author
Owner

@vitaminj commented on GitHub (Jul 22, 2020):

To remove this manually, open regedit, go to the folder \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked (you may have to create the Blocked key) then add a string value on the right with the name {9F156763-7844-4DC4-B2B1-901F640F5155} and the value WindowsTerminal
Then restart Explorer.

Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift

@vitaminj commented on GitHub (Jul 22, 2020): To remove this manually, open regedit, go to the folder `\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked` (you may have to create the `Blocked` key) then add a string value on the right with the name `{9F156763-7844-4DC4-B2B1-901F640F5155}` and the value `WindowsTerminal` Then restart Explorer. Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift
Author
Owner

@4k3or3et commented on GitHub (Jul 22, 2020):

To remove this manually, open regedit, go to the folder \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked (you may have to create the Blocked key) then add a string value on the right with the name {9F156763-7844-4DC4-B2B1-901F640F5155} and the value WindowsTerminal

Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift

Cool stuff. Thank you.

@4k3or3et commented on GitHub (Jul 22, 2020): > To remove this manually, open regedit, go to the folder `\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked` (you may have to create the `Blocked` key) then add a string value on the right with the name `{9F156763-7844-4DC4-B2B1-901F640F5155}` and the value `WindowsTerminal` > > Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift Cool stuff. Thank you.
Author
Owner

@ThenTech commented on GitHub (Aug 18, 2020):

To remove this manually, open regedit, go to the folder [...]

Nice, I already added my own shortcut on shift only, so this removed the duplicate.

@ThenTech commented on GitHub (Aug 18, 2020): > To remove this manually, open regedit, go to the folder [...] Nice, I already added my own shortcut on shift only, so this removed the duplicate.
Author
Owner

@patricknelson commented on GitHub (Mar 19, 2021):

I use this registry hack in combination with https://github.com/BroJenuel/Explorer-Context-Menu-Integration-for-windows-terminal to address issues with Windows Terminal not being able to properly retain the CWD when opening new tabs and panes (#8933).

@patricknelson commented on GitHub (Mar 19, 2021): I use this registry hack in combination with https://github.com/BroJenuel/Explorer-Context-Menu-Integration-for-windows-terminal to address issues with Windows Terminal not being able to properly retain the `CWD` when opening new tabs and panes (#8933).
Author
Owner

@jayagami commented on GitHub (Apr 6, 2021):

I use this registry hack in combination with https://github.com/BroJenuel/Explorer-Context-Menu-Integration-for-windows-terminal to address issues with Windows Terminal not being able to properly retain the CWD when opening new tabs and panes (#8933).

I think this is better than the official solution:

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

img

@jayagami commented on GitHub (Apr 6, 2021): > I use this registry hack in combination with https://github.com/BroJenuel/Explorer-Context-Menu-Integration-for-windows-terminal to address issues with Windows Terminal not being able to properly retain the `CWD` when opening new tabs and panes (#8933). I think this is better than the official solution: https://github.com/lextm/windowsterminal-shell ![img](https://raw.githubusercontent.com/lextm/windowsterminal-shell/master/default.png)
Author
Owner

@pundoo commented on GitHub (Aug 29, 2021):

@vitaminj Unfortunately that doesn't work for 'Open in Windows Terminal Preview'. Any idea of the correct CLSID for that?

@pundoo commented on GitHub (Aug 29, 2021): @vitaminj Unfortunately that doesn't work for 'Open in Windows Terminal Preview'. Any idea of the correct CLSID for that?
Author
Owner

@vitaminj commented on GitHub (Aug 30, 2021):

@pundoo it seems to be {02DB545A-3E20-46DE-83A5-1329B1E88B6B} for the preview version (you can use any string for the value but WindowsTerminalPreview is probably a good idea so that you remember what it was)

@vitaminj commented on GitHub (Aug 30, 2021): @pundoo it seems to be `{02DB545A-3E20-46DE-83A5-1329B1E88B6B}` for the preview version (you can use any string for the value but `WindowsTerminalPreview` is probably a good idea so that you remember what it was)
Author
Owner

@pundoo commented on GitHub (Aug 30, 2021):

@vitaminj Ahh.. its literally just there. I went over the source code atleast twice. How could I possibly overlook that.. smh

@pundoo commented on GitHub (Aug 30, 2021): @vitaminj Ahh.. its literally just there. I went over the source code atleast twice. How could I possibly overlook that.. smh
Author
Owner

@ThisOneIsForPosting commented on GitHub (Sep 9, 2021):

@vitaminj
Thank you for finding that string! Now Windows Terminal Preview no longer shows up in my Windows 11 context menu 👍

@ThisOneIsForPosting commented on GitHub (Sep 9, 2021): @vitaminj Thank you for finding that string! Now **Windows Terminal Preview** no longer shows up in my Windows 11 context menu 👍
Author
Owner

@itsmeshibintmz commented on GitHub (Dec 27, 2021):

To remove this manually, open Regedit, go to the folder \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked (you may have to create the Blocked key) then add a string value on the right with the name {9F156763-7844-4DC4-B2B1-901F640F5155} and the value WindowsTerminal Then restart Explorer.

Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift

Thank you.

@itsmeshibintmz commented on GitHub (Dec 27, 2021): > To remove this manually, open Regedit, go to the folder `\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked` (you may have to create the `Blocked` key) then add a string value on the right with the name `{9F156763-7844-4DC4-B2B1-901F640F5155}` and the value `WindowsTerminal` Then restart Explorer. > > Bookmark the folder if you're likely to want to come back and re-enable the menu item when they add the option to only show it on holding shift Thank you.
Author
Owner

@musm commented on GitHub (Jan 30, 2022):

@pundoo it seems to be {02DB545A-3E20-46DE-83A5-1329B1E88B6B} for the preview version (you can use any string for the value but WindowsTerminalPreview is probably a good idea so that you remember what it was)

Thank you. How about how to remove it from the extended context menu on Windows 11, after you click "Show More Options"?

@musm commented on GitHub (Jan 30, 2022): > @pundoo it seems to be `{02DB545A-3E20-46DE-83A5-1329B1E88B6B}` for the preview version (you can use any string for the value but `WindowsTerminalPreview` is probably a good idea so that you remember what it was) Thank you. How about how to remove it from the extended context menu on Windows 11, after you click "Show More Options"?
Author
Owner

@itsmeshibintmz commented on GitHub (Jan 31, 2022):

@pundoo it seems to be {02DB545A-3E20-46DE-83A5-1329B1E88B6B} for the preview version (you can use any string for the value but WindowsTerminalPreview is probably a good idea so that you remember what it was)

Thank you. How about how to remove it from the extended context menu on Windows 11, after you click "Show More Options"?

the same registry edit you can apply in Windows 11 too.

@itsmeshibintmz commented on GitHub (Jan 31, 2022): > > @pundoo it seems to be `{02DB545A-3E20-46DE-83A5-1329B1E88B6B}` for the preview version (you can use any string for the value but `WindowsTerminalPreview` is probably a good idea so that you remember what it was) > > Thank you. How about how to remove it from the extended context menu on Windows 11, after you click "Show More Options"? the same registry edit you can apply in Windows 11 too.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#9735