Restore Old Right-click Context Menu In Windows 11

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
1,265
Reaction score
107

Restore Old Right-click Context Menu In Windows 11

Starting with Windows 11, the context menu in the File Explorer is refreshed, which is compact and is based on Modern design. However, the refreshed context menu shows fewer items compared to the Legacy Context menu. This article discusses how to restore the Legacy Context menu in Windows 11, showing up by default.

Image

You can show the Legacy Right Click Context menu by clicking Show more options at the end of the list or pressing Shift+F10. If you want it by default, you need to add a registry entry below so that every time you right-click a File or Folder, it shows the Legacy Context menu by default.

Image
 

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
1,265
Reaction score
107
Restore The Old Context Menu In Windows 11
  1. Right-click the Start button and choose Windows Terminal.
  2. Copy the command from below, paste it into Windows Terminal Window, and press enter.​
    1. reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
  3. Restart File Explorer or your computer for the changes to take effect.​
  4. You would see the Legacy Right Click Context menu by default.​
Image
 

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
1,265
Reaction score
107
Restore Modern Context Menus In Windows 11

To undo this change, in a Terminal Window, execute this command:

reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

Restart the File Explorer or Computer for the changes to take effect.​
 

denisesmith

Member
Joined
Mar 21, 2025
Messages
13
Reaction score
1
To restore the old right-click context menu in Windows 11, run the following command in Command Prompt (Admin):

```sh
reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /f /ve
```

Then restart your PC or Explorer using:

```sh
taskkill /f /im explorer.exe & start explorer
```
 

micheljon

Member
Joined
Mar 24, 2025
Messages
12
Reaction score
1
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}]
@=""

[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32]
@=""
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top