Skip to content

Razer Software Auto-Install - Disable

config/tweaks.json
 990  "WPFTweaksRazerBlock": {
 991    "Content": "Razer Software Auto-Install - Disable",
 992    "Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.",
 993    "category": "z__Advanced Tweaks - CAUTION",
 994    "panel": "1",
 995    "registry": [
 996      {
 997        "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DriverSearching",
 998        "Name": "SearchOrderConfig",
 999        "Value": "0",
1000        "Type": "DWord",
1001        "OriginalValue": "1"
1002      },
1003      {
1004        "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Device Installer",
1005        "Name": "DisableCoInstallers",
1006        "Value": "1",
1007        "Type": "DWord",
1008        "OriginalValue": "0"
1009      }
1010    ],
1011    "InvokeScript": [
1012      "
1013      $RazerPath = \"C:\\Windows\\Installer\\Razer\"
1014
1015      if (Test-Path $RazerPath) {
1016        Remove-Item $RazerPath\\* -Recurse -Force
1017      } else {
1018        New-Item -Path $RazerPath -ItemType Directory
1019      }
1020
1021      icacls $RazerPath /deny \"Everyone:(W)\"
1022      "
1023    ],
1024    "UndoScript": [
1025      "
1026      icacls \"C:\\Windows\\Installer\\Razer\" /remove:d Everyone
1027      "
1028    ],

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.

You can find information about the registry on Wikipedia and Microsoft’s Website.