🖱️ How to Restore the Old Context Menu in Windows 11
Windows 11 replaced the familiar right-click menu with a cleaner, minimal version. While it looks nice, it hides common tools like Properties, Refresh, and Copy as Path behind a “Show more options” submenu.
If you miss the full menu from Windows 10, you can easily restore it with a simple Registry tweak.
🧩 Why Microsoft Changed It
Microsoft redesigned the context menu to make it simpler for modern apps and touch interfaces.
But for power users and IT admins who work fast, the change adds unnecessary clicks. Luckily, the classic menu is still there—just hidden by default.
⚙️ Steps to Bring Back the Classic Menu
Follow these simple steps:
- Open Windows Terminal (Admin)
- Right-click the Start button
- Select Windows Terminal (Admin) or Command Prompt (Admin)
- Run this command:
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve - Restart Windows Explorer
- Press Ctrl + Shift + Esc to open Task Manager
- Right-click Windows Explorer → Restart
- Or reboot your PC
After restarting, the classic full context menu appears immediately when you right-click files or folders.
🔄 Revert to the New Menu
If you prefer the modern Windows 11 menu again, remove the Registry entry:
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
Then restart Windows Explorer or reboot your PC.
💼 Admin Tip:
You can roll this fix out to multiple systems using Group Policy, Microsoft Intune, or a PowerShell script.
Export the key once and push it through a script or configuration profile.
🧠 Quick Reference Table
| Action | Command | Result |
|---|---|---|
| Restore classic menu | reg add ...InprocServer32 | Full context menu returns |
| Revert to new menu | reg delete ...InprocServer32 | Brings back modern menu |

