Files
winutil/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md
T

31 lines
1.4 KiB
Markdown
Raw Normal View History

2026-01-07 19:55:35 +00:00
# Set Classic Right-Click Menu
```json
2026-01-14 20:28:45 +02:00
"WPFTweaksRightClickMenu": {
"Content": "Set Classic Right-Click Menu ",
"Description": "Great Windows 11 tweak to bring back good context menus when right clicking things in explorer.",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a030_",
"InvokeScript": [
"
2026-01-07 19:55:35 +00:00
New-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Name \"InprocServer32\" -force -value \"\"
Write-Host Restarting explorer.exe ...
2026-01-14 20:28:45 +02:00
Stop-Process -Name \"explorer\" -Force
"
],
"UndoScript": [
2026-01-07 19:55:35 +00:00
"
Remove-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Recurse -Confirm:$false -Force
# Restarting Explorer in the Undo Script might not be necessary, as the Registry change without restarting Explorer does work, but just to make sure.
Write-Host Restarting explorer.exe ...
2026-01-14 20:28:45 +02:00
Stop-Process -Name \"explorer\" -Force
2026-01-07 19:55:35 +00:00
"
2026-01-14 20:28:45 +02:00
],
2026-01-07 19:55:35 +00:00
```
2026-01-14 20:28:45 +02:00
## Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
2026-01-07 19:55:35 +00:00
2026-01-14 20:28:45 +02:00
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).