For some strange reason Microsoft decided to make a new right click menu that hides features in Windows 11 The command below will restore legacy right click context menu to your windows system. just run the command from cmd as administrator.
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
To revert to the Windows 11 context menu: run below in cmd as administrator
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}"
You will need to restart explorer.exe process or restart your computer to see the changes
taskkill /F /IM explorer.exe & start explorer
Comments