Add Windows Terminal Context Menu

Code Properties

  • Language: Windows Registry
  • OS: Windows 11

Overview

Sources:

Registry entries to add or remove the “Open in Windows Terminal” option from the Windows 11 context menu.

Code

Add for All Users

Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=-

Remove for All Users

Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=""

Add for Current User

Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=-

Remove for Current User

Windows Registry Editor Version 5.00
 
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{9F156763-7844-4DC4-B2B1-901F640F5155}"=""

Usage

  1. Save the desired registry content to a .reg file
  2. Double-click to import, or right-click and select “Merge”
  3. Confirm the UAC prompt

Appendix

Note created on 2024-05-17 and last modified on 2024-12-31.

See Also


(c) No Clocks, LLC | 2024