Quick fix: Open Command Prompt (Admin). Run: reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve. Then restart Explorer: taskkill /f /im explorer.exe && start explorer.exe. Right-click anywhere now shows the classic Windows 10-style context menu directly. To revert: reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f.
Windows 11 introduced a simplified right-click menu with “Show more options” for the legacy menu. Many users prefer the older detailed menu directly. A registry tweak forces Explorer to default to the classic menu.
Affects: Windows 11.
Fix time: ~2 minutes.
What causes this
Microsoft redesigned the context menu for Windows 11 to be cleaner and touch-friendly. The new menu shows fewer items by default. To access third-party shell extensions (7-Zip, Notepad++, etc.), you must click Show more options, which opens the classic menu. Two extra clicks per right-click. The registry workaround restores instant classic menu.
Method 1: Registry tweak via Command Prompt
The standard route.
- Open Command Prompt as Admin (Win, type cmd, Ctrl+Shift+Enter).
- Run:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /veThis creates a blank registry value that tells Explorer to skip the new menu.
- Restart Explorer:
taskkill /f /im explorer.exe && start explorer.exeOr sign out and back in.
- Test: right-click on desktop. Classic menu appears directly.
- Right-click on file: shows full classic menu with all shell extensions.
- To revert: run
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /fRestart Explorer. New Win11 menu returns.
- Registry tweak applies per-user. Affects only your account.
This is the standard tweak.
Method 2: Use Windows 11 Settings (not natively supported)
For users wanting GUI tools.
- Windows 11 doesn’t expose this setting natively. Use third-party tools.
- Install Winaero Tweaker (free, well-respected). Open Winaero Tweaker.
- Navigate to Context Menu → Classic Full Context Menus. Tick the option.
- Click Restart Explorer. Done.
- Alternative: Explorer Patcher (free, GitHub). Settings has “Disable Windows 11 context menu” toggle.
- Alternative: StartAllBack (paid). Comprehensive Win10-style refresh including context menu.
- These tools wrap the registry tweak in a UI.
- For corporate PCs: third-party tools may violate IT policy.
This is for GUI workflows.
Method 3: Keep Windows 11 menu but access classic via keyboard
For occasional access.
- Don’t want to permanently switch but want faster access to classic.
- Shortcut: Shift + F10 on any file opens classic menu directly (no “Show more options” needed).
- Or: right-click + Shift. Some users find this works for “always show more options.”
- For touch input: long-press on item opens context menu; you have to click Show more options manually.
- For specific apps that need classic menu (Notepad++, 7-Zip, WinRAR): always right-click + Show more options → pick the option.
- For developers: hold Shift while right-clicking on folder → Open PowerShell window here appears in classic menu.
- For backup approach: pin frequently-used “Show more options” actions to your taskbar via custom .bat shortcuts.
This is the no-registry-change approach.
How to verify the fix worked
- Right-click on desktop. Full classic menu with all items (New, Display settings, Personalize, etc.).
- Right-click on file. Shell extensions (7-Zip, Notepad++, “Open with”) visible directly.
- No “Show more options” step needed.
- Registry shows the empty key under HKCU\Software\Classes\CLSID.
If none of these work
If registry doesn’t take effect: Explorer restart needed: Task Manager → right-click Windows Explorer → Restart. For per-machine vs per-user: HKCU is per-user. If you need all users: replace HKCU with HKLM (Admin needed). For Group Policy override: corporate-managed PCs may revert. Check gpresult /h. For Insider builds: registry tweak path may change. Check the Win11 22H2/23H2/24H2 forums for current paths. For specific extensions still hidden: extension itself may filter for Win11 context menu. Update extension or contact developer. For Win11 Lite editions: registry tweak unaffected by edition.
Bottom line: Registry tweak: reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve + Explorer restart. Use Winaero Tweaker or Explorer Patcher for GUI. Or use Shift+F10 for occasional classic menu access.