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!
 

Solution
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

Mike

Windows Forum Admin
Staff member
Premium Supporter
Joined
Jul 22, 2005
Messages
9,248
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
 

Solution

Exotica

New Member
Joined
Jan 20, 2024
Messages
4
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