colinardo
Goto Top

Windows 11 - Activate classic context menu

article-picture
Short tip for those who are annoyed by the new context menu under Windows 11. But there is a hack to define the classic menu as the default.

Quickly activate the classic menu via Powershell for the current user:
(New-Item 'HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32' -Force).SetValue('','')  
kill -Name explorer
start explorer
or as an alternative method via *.reg file with a followed log off / log in or by restarting the explorer instance.
Windows Registry Editor Version 5.00

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

It is important that the "(default)" value is really set to an empty string, if the value is set to "(value not set)" then the trick will not work.

To revert to the modern menu just remove the created entries and log off or restart explorer.

Regards @colinardo

Content-Key: 1377812885

Url: https://administrator.de/contentid/1377812885

Ausgedruckt am: 19.03.2024 um 07:03 Uhr