Skip to content

Set Classic Right-Click Menu

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