Starting with the May 2019 Update (version 1903), Windows 10 is
introducing Tamper Protection, which is a new feature designed to
protect the Windows Security app against unauthorized changes that are
not made directly through the experience.
Although this is a welcome addition that adds an extra layer of
protection on Windows 10, it can cause some problems when you need to
manage security settings through another app or command line tools,
such as PowerShell or Command Prompt.
This includes making changes through Group Policy!
Change the Tamper Protection setting
In the search box on the taskbar, type Windows Security and then selct
Windows Security in the list of results. In Windows Security, select
Virus & threat protection and then under Virus & threat protection
settings, select Manage settings. Change the Tamper Protection setting
to On or Off.
Then launch Group policy editor and disable abovementioned three services (although I think that scanning downloads is useful and does not impact performance) AND a new setting called Turn on process scanning whenever real-time protection is enabled.
Run gpupdate /force from CMD, no need to reboot.
Run Regedit and check if these lines are added into [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection]
"DisableBehaviorMonitoring"=dword:00000001
"DisableOnAccessProtection"=dword:00000001
"DisableScanOnRealtimeEnable"=dword:00000001
"DisableIOAVProtection" =dword:00000001
If you do not have acess to GPeditor, create a .reg script containing
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection]
"DisableBehaviorMonitoring"=dword:00000001
"DisableOnAccessProtection"=dword:00000001
"DisableScanOnRealtimeEnable"=dword:00000001
Enjoy your much faster system.
Also I recommend using VThash check utility for much more comprehensive scanning.
I am exactly in your situation. It is a shame there is no advanced option to achieve this simple scenario. – Erwin – 2015-08-15T09:41:08.520
I disabled Windows Defender entirely via group policy (though this might be unnecessary once you install a 2nd AV) then installed Bitdefender Free for scheduled and on demand scans. Additionally, you can scan exe's on-demand using more than a dozen engines (cloud scanned) simultaneously using Secure-A-Plus. – Gaia – 2015-08-15T13:10:24.087
@Erwin Check my answer if you're still interested on this. – Marc.2377 – 2016-06-18T20:09:19.413