Skip to content

Set Classic Right-Click Menu

config/tweaks.json
2025  "WPFTweaksRightClickMenu": {
2026    "Content": "Set Classic Right-Click Menu",
2027    "Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.",
2028    "category": "z__Advanced Tweaks - CAUTION",
2029    "panel": "1",
2030    "InvokeScript": [
2031      "
2032      New-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Name \"InprocServer32\" -force -value \"\"
2033      Write-Host Restarting explorer.exe ...
2034      Stop-Process -Name \"explorer\" -Force
2035      "
2036    ],
2037    "UndoScript": [
2038      "
2039      Remove-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Recurse -Confirm:$false -Force
2040      # Restarting Explorer in the Undo Script might not be necessary, as the Registry change without restarting Explorer does work, but just to make sure.
2041      Write-Host Restarting explorer.exe ...
2042      Stop-Process -Name \"explorer\" -Force
2043      "
2044    ],