Quick answer: Run reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve in Command Prompt (admin), then restart Explorer.
If you're like me, you've probably been annoyed by Windows 11's new right-click menu since day one. It hides common options like Cut, Copy, Paste, Rename, and Share behind a tiny “Show more options” button. Why? Microsoft wanted a cleaner look, but in practice, it slows you down. I've had clients call me saying “Derek, my right-click menu is broken—only half the stuff shows up.” Usually, it's not broken—it's just the new default behavior. But sometimes, third-party apps (like 7-Zip, Notepad++, or TortoiseGit) don't register their entries properly in the new menu. Here's how to fix it.
Fix 1: Restore the Classic Context Menu (Registry Hack)
This is the real fix. It forces Windows 11 to use the old full menu from Windows 10. No third-party tools needed.
- Open Command Prompt as Administrator. Hit Win, type
cmd, right-click “Command Prompt,” choose “Run as administrator.” - Copy and paste this exact command:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve - Press Enter. You should see “The operation completed successfully.”
- Restart File Explorer. Either:
- Open Task Manager (Ctrl+Shift+Esc), find “Windows Explorer,” right-click, choose “Restart.”
- Or just log off and back on.
That's it. Right-click anywhere—you'll see the classic full menu with all options visible. No more hunting for “Show more options.”
Fix 2: Restore Missing App Entries (If Some Options Are Still Gone)
Had a client last week whose 7-Zip entry vanished from the right-click menu after a system update. The registry hack above didn't bring it back. Here's what worked:
- Open 7-Zip (or whatever app is missing). Go to Tools > Options.
- Under the “7-Zip” tab, make sure “Integrate 7-Zip into shell context menu” is checked.
- Click OK. If the app doesn't have a settings option, uninstall and reinstall it. That forces the context menu handler to re-register.
Fix 3: Check for Corrupted Context Menu Handlers (Advanced)
Sometimes a broken shell extension (like an old WinRAR or Dropbox entry) screws up the whole menu. I use a free tool called ShellExView (from Nirsoft). No affiliation—it's just the best tool for the job.
- Download ShellExView. Run it (no install needed).
- Sort by “Type” and look for “Context Menu” entries.
- Disable third-party entries one by one. Restart Explorer after each disable to test.
- When the missing options come back, you've found the culprit. Leave it disabled or update the app.
I've seen Google Drive and Adobe Acrobat cause this exact problem on Windows 11 23H2. Disabling their shell extensions fixed it instantly.
If Nothing Works: Reset File Explorer to Default
Worst case, you can reset Explorer's settings entirely. Open PowerShell as admin and run:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
This re-registers all built-in Windows apps. It takes a few minutes. After that, restart your PC. It's a nuclear option—use only if the other fixes failed.
Prevention Tip: Don't Over-Install Context Menu Add-ons
Every app that adds a right-click entry is a potential failure point. Be picky. Before installing software, uncheck “Add to context menu” in the installer if you don't need it. For apps you do use (like 7-Zip), keep them updated. I've seen Cortana and OneDrive cause menu issues too—disable their shell extensions in settings if you don't need them.
Also, if you ever want to undo the registry hack (go back to the new Windows 11 menu), delete the key you added: open Regedit, delete HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}. Restart Explorer. Done.
That's the whole deal. No fluff, no “navigate to” nonsense. If one fix doesn't work, try the next. You'll have your right-click menu back in five minutes.