How to Get the Classic Right-Click Menu Back on Windows 11
🔍 WiseChecker

How to Get the Classic Right-Click Menu Back on Windows 11

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.

Symptom: Want the classic Windows 10-style right-click context menu in Windows 11 without “Show more options” step.
Affects: Windows 11.
Fix time: ~2 minutes.

ADVERTISEMENT

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.

  1. Open Command Prompt as Admin (Win, type cmd, Ctrl+Shift+Enter).
  2. Run:
    reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

    This creates a blank registry value that tells Explorer to skip the new menu.

  3. Restart Explorer:
    taskkill /f /im explorer.exe && start explorer.exe

    Or sign out and back in.

  4. Test: right-click on desktop. Classic menu appears directly.
  5. Right-click on file: shows full classic menu with all shell extensions.
  6. To revert: run
    reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

    Restart Explorer. New Win11 menu returns.

  7. Registry tweak applies per-user. Affects only your account.

This is the standard tweak.

ADVERTISEMENT

Method 2: Use Windows 11 Settings (not natively supported)

For users wanting GUI tools.

  1. Windows 11 doesn’t expose this setting natively. Use third-party tools.
  2. Install Winaero Tweaker (free, well-respected). Open Winaero Tweaker.
  3. Navigate to Context Menu → Classic Full Context Menus. Tick the option.
  4. Click Restart Explorer. Done.
  5. Alternative: Explorer Patcher (free, GitHub). Settings has “Disable Windows 11 context menu” toggle.
  6. Alternative: StartAllBack (paid). Comprehensive Win10-style refresh including context menu.
  7. These tools wrap the registry tweak in a UI.
  8. 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.

  1. Don’t want to permanently switch but want faster access to classic.
  2. Shortcut: Shift + F10 on any file opens classic menu directly (no “Show more options” needed).
  3. Or: right-click + Shift. Some users find this works for “always show more options.”
  4. For touch input: long-press on item opens context menu; you have to click Show more options manually.
  5. For specific apps that need classic menu (Notepad++, 7-Zip, WinRAR): always right-click + Show more options → pick the option.
  6. For developers: hold Shift while right-clicking on folder → Open PowerShell window here appears in classic menu.
  7. 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.

ADVERTISEMENT