Windows 11 - Activate classic context menu
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:
or as an alternative method via *.reg file with a followed log off / log in or by restarting the explorer instance.
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
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
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
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 1377812885
Url: https://administrator.de/contentid/1377812885
Ausgedruckt am: 18.11.2024 um 17:11 Uhr