Last active
October 16, 2024 07:20
-
-
Save Jaid/3d7469559847dcf2286261eb531c9fa0 to your computer and use it in GitHub Desktop.
Disable Windows 10 Defender (can drastically reduce CPU usage, but I only recommend this for advanced Windows users)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender] | |
"DisableAntiSpyware"=dword:00000001 | |
"DisableAntiVirus"=dword:00000001 | |
"DisableRoutinelyTakingAction"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Real-Time Protection] | |
"DisableRealtimeMonitoring"=dword:00000001 | |
"DisableBehaviorMonitoring"=dword:00000001 | |
"DisableOnAccessProtection"=dword:00000001 | |
"DisableScanOnRealtimeEnable"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment