In Windows 11, the context menu appears very quickly but the menu doesn’t show all the entries by default. To access the menu entries that are not shown in the default listing, you need to click the “Show more options” (Shift+F10) option every time.
The Windows 11 default context menu may be slightly inconvenient for those who have been using Windows Operating Systems for a long time. This article explains how to make Windows 11 show the full classic context menu that shows all the entries by default.
Restore Classic (Full) Context Menu in Windows 11
To restore the full/classic context menu in Windows 11, follow these steps:
- Open a Command Prompt window.
- Type the following command line and press Enter:
reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /d "" /f
- Exit the Command Prompt window.
- Log off and login back in, or restart Explorer (via Task Manager) for the change to take effect.
INFO: The above command-line creates the following registry key (per-user override) and sets an empty string as the data for the (default)
value:
HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32
When you right-click an item, you’ll see the full/classic context menu instead of the default condensed menu. The “Show more options” entry is removed.
[Undo Information] Restore the Default Windows 11 Context menu
To restore the default Windows 11 context menu, all you need to do is delete the following registry key:
HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
It can be done via the Registry Editor (regedit.exe
). Alternately, you can use the following command from a Command Prompt window:
reg delete HKCU\SOFTWARE\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2} /f
I hope that helps!
One small request: If you liked this post, please share this?
One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:- Pin it!
- Share it to your favorite blog + Facebook, Reddit
- Tweet it!
Incorrect path, \CLSID\ missing -> HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32
Also easier to kill/restart explorer.exe from the command line since we already are in cmd :
taskkill /im explorer.exe /f & explorer.exe
@Zorro: Fixed the path. Thank you for the heads up!