Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Windows 10 - Disable protection

Exotica

New Member
Joined
Jan 20, 2024
Messages
4
Hello,

In Windows 10 I am facing the following problem. In the "Virus and threat protection" settings I set the option to "Manual scan" and on restart it goes back to "Quick scan". I also turn off "real time protection" and it turns itself back on.Any solution to disable it permanently?

Thanks!
 
Hello,

In Windows 10 I am facing the following problem. In the "Virus and threat protection" settings I set the option to "Manual scan" and on restart it goes back to "Quick scan". I also turn off "real time protection" and it turns itself back on.Any solution to disable it permanently?

Thanks!
This is not recommended, but you can turn it off in local machine policy or go into PowerShell (right-click "Run as Admin") and do:

Code:
Set-MpPreference -DisableRealtimeMonitoring $true
 
This is not recommended, but you can turn it off in local machine policy or go into PowerShell (right-click "Run as Admin") and do:

Code:
Set-MpPreference -DisableRealtimeMonitoring $true
Very nice, thanks!
 
Back
Top