When Microsoft released Windows 11, they completely redesigned the desktop interface. One of the most controversial changes was the new, simplified right-click context menu. While it looks modern and uncluttered, it hides many essential features (like 7-Zip extraction, advanced sharing, and developer tools) behind an extra button called “Show more options.”
For power users who rely on right-click shortcuts for productivity, having to click twice just to extract a ZIP file or scan a folder with antivirus software is incredibly frustrating. Microsoft does not provide a simple toggle switch in the Settings app to undo this change. However, you can permanently restore the classic Windows 10 right-click menu using a single Command Prompt command.
How to Restore the Classic Context Menu (Using Command Prompt)
To revert to the classic menu, you need to add a specific entry to the Windows Registry. The safest and fastest way to do this is by pasting a pre-written string into the Command Prompt. You do not need to manually navigate the Registry Editor.
- Click the Start button on your taskbar (or press the Windows key).
- Type cmd into the search bar.
- You will see “Command Prompt” appear in the results. Click Run as administrator on the right-hand side. (Click “Yes” if a User Account Control prompt asks for permission).
- A black window will open. Highlight, copy, and paste the following exact command into the window:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve - Press Enter. You should see a message saying “The operation completed successfully.”
- For the changes to take effect immediately, you must restart the Windows Explorer process. You can do this by typing the following command and pressing Enter:
taskkill /f /im explorer.exe & start explorer.exe
Your screen and taskbar will briefly flash and disappear for a second. Once they return, go to your desktop or open any folder and right-click on a file. The classic, fully populated Windows 10 context menu will instantly appear—no more clicking “Show more options.”
How to Revert Back to the Windows 11 Menu
If you eventually decide you prefer the modern Windows 11 design, or if an upcoming Windows update breaks the classic menu, undoing the change is just as easy.
- Open the Command Prompt as Administrator (following steps 1-3 above).
- Copy and paste this exact command to delete the registry entry you created:
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f - Press Enter. Again, you should see a success message.
- Restart Windows Explorer again using this command:
taskkill /f /im explorer.exe & start explorer.exe
After the quick flash, your right-click menu will be restored to the default Windows 11 layout.
Why Is This Necessary?
Microsoft introduced the new context menu to combat “bloat.” Over the years, software developers abused the classic context menu, filling it with unnecessary shortcuts that slowed down performance and looked messy. The new menu forces third-party apps to integrate more cleanly.
While the intention was good, many popular legacy applications have not yet updated their software to support the new Windows 11 integration. Until they do, restoring the classic menu remains a vital productivity tweak for millions of users.