# How to Restore the Classic Right-Click Menu in Windows 11 URL: https://www.mytechnician.tech/tips/restore-classic-right-click-context-menu-windows-11/ Published: 2026-05-23 | Updated: 2026-08-10 | Author: Ankit Kumar Tags: Windows 11, Optimization, Fix Summary: Bring back the full Windows 10 right-click menu in Windows 11 with one registry key—no more 'Show more options' extra click or laggy context menu. ## 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](https://www.mytechnician.tech/tips/create-system-restore-point-windows-11/). ## Step 1: Open Registry Editor 1. Press `Win + R`, type `regedit`, press **Enter**. 2. 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 1. Right-click **CLSID** → **New** → **Key**. Name it exactly: ``` {86ca1aa0-34aa-4e8b-a509-50c905bae2a2} ``` 2. 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 1. Select the **InprocServer32** key. 2. Double-click **(Default)** in the right pane. 3. 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 1. Open **Task Manager** (`Ctrl + Shift + Esc`). 2. Find **Windows Explorer**, right-click → **Restart**. 3. 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**: ```cmd reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve ``` Then restart Explorer: ```cmd taskkill /f /im explorer.exe & start explorer.exe ``` ## How to Undo It 1. In **Registry Editor**, go to: ``` HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2} ``` 2. Right-click that key → **Delete** → confirm. 3. Restart Explorer. The compact Windows 11 menu returns. Or from Terminal: ```cmd 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](https://www.mytechnician.tech/tips/fix-windows-11-file-explorer-crashing-not-responding/). * General sluggishness: [speed up a slow Windows 11 PC](https://www.mytechnician.tech/tips/speed-up-slow-windows-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. --- Source: https://www.mytechnician.tech/tips/restore-classic-right-click-context-menu-windows-11/ — My Technician, free Windows 10/11 troubleshooting guides. More guides: https://www.mytechnician.tech/llms.txt