The Problem
Windows 11's compact right-click menu hides most commands behind Show more options, and on some PCs it opens with a visible lag. Anything installed by a third-party app—7-Zip, Git, WinRAR, Notepad++, TortoiseSVN—lands in the hidden submenu, so every extract or compare takes two clicks instead of one.
This guide restores the full classic menu on the first click, with a single registry key you can undo at any time.
Just need it occasionally? Hold Shift while right-clicking, or press Shift + F10, to open the full menu without changing anything.
Why the New Menu Exists
Windows 11 only shows modern IExplorerCommand handlers in the compact menu. Older shell extensions—which is nearly all of them—are relegated to the legacy menu behind Show more options. Developers were expected to migrate; most have not. The registry key below tells Explorer to skip the new menu entirely and use the legacy one, which contains everything.
Before You Start: Make a Restore Point
Editing the registry is safe when the steps are exact, but create a restore point first: create a system restore point.
Step 1: Open Registry Editor
- Press
Win + R, typeregedit, press Enter. - Click Yes at the User Account Control prompt.
Step 2: Navigate to the CLSID Key
Paste this into the address bar at the top of Registry Editor and press Enter:
HKEY_CURRENT_USER\Software\Classes\CLSID
This is the per-user branch, so the change affects only your account and needs no administrator rights beyond the UAC prompt.
Step 3: Create the Override Key
- Right-click CLSID → New → Key. Name it exactly:
{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
- Right-click the new key → New → Key. Name this one exactly:
InprocServer32
Both names must match character for character, braces included. A typo simply does nothing—it will not damage anything.
Step 4: Set the Default Value to Empty
- Select the InprocServer32 key.
- Double-click (Default) in the right pane.
- Leave Value data completely empty and click OK.
The value must show (value not set) changed to an empty string. This is the part people get wrong: opening the value and clicking OK without typing anything is exactly right.
Step 5: Restart Windows Explorer
- Open Task Manager (
Ctrl + Shift + Esc). - Find Windows Explorer, right-click → Restart.
- Right-click your desktop. The full classic menu appears on the first click.
If nothing changes, sign out and back in, or restart the PC.
Doing It From the Command Line
Faster if you set up several machines. In Terminal:
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
How to Undo It
- In Registry Editor, go to:
HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
- Right-click that key → Delete → confirm.
- Restart Explorer. The compact Windows 11 menu returns.
Or from Terminal:
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
What You Gain and Lose
Gain: every context-menu command on the first click, third-party entries included, and generally a faster menu on machines where the new one stutters.
Lose: the icon row at the top of the Windows 11 menu (cut, copy, rename, delete, share as icons). Those commands are still in the classic menu as text entries, and the keyboard shortcuts are unchanged.
Note that Windows feature updates occasionally reset this key. If the compact menu reappears after a big update, simply apply the change again.
Bonus: Fix a Slow Context Menu Rather Than a Short One
If the menu is laggy rather than compact, the cause is a badly behaved shell extension—often a cloud-sync client or an antivirus scanner adding a handler that waits on the network.
- Uninstall apps you no longer use; each one can leave a handler behind.
- Right-clicking inside a synced OneDrive or Dropbox folder is slower by design—test in a local folder to compare.
- If File Explorer itself stutters, see File Explorer crashing or not responding.
- General sluggishness: speed up a slow Windows 11 PC.
What Not to Do
- Don't use a "Windows 11 tweaker" utility for this one key. Most bundle dozens of other changes you did not ask for, and undoing them individually is far harder than deleting one registry key.
- Don't apply the change under
HKEY_LOCAL_MACHINE. The per-user path above is the supported location and is trivially reversible.
Related guides
How to Find and Remove Cryptominer Malware in Windows 11
Fans loud, CPU or GPU pinned when idle, and usage drops the moment you open Task Manager? That is a cryptominer. Here is how to find it and remove it for good.
How to Find and Remove Malicious Browser Extensions
An extension you installed years ago can be sold and turned malicious overnight. Audit Chrome and Edge properly, spot the warning signs, and remove what should not be there.
Remove Malware Startup Entries and Scheduled Tasks
Malware you deleted keeps coming back? It left a scheduled task, service, or Run key behind. Here is how to find and clear every persistence point in Windows 11.
How to Detect and Remove a Rootkit in Windows 11
Malware that survives every scan and reinstall is hiding below Windows. Detect a rootkit or bootkit, remove it properly, and know when a clean install is the only answer.
What to Do After a Remote Access Scam
You let a fake support agent onto your PC with AnyDesk or TeamViewer. Here is the exact order to lock things down, find what they left behind, and protect your money.