1

要禁用 Windows Defender,我在 Windows 10 中使用 PowerShell(以管理员身份)运行以下命令: Set-MpPreference -DisableRealtimeMonitoring $true

但是实时保护并没有被禁用。

谁能知道如何以编程方式禁用实时保护?

4

3 回答 3

5

篡改保护(启用时)可防止“Set-MpPreference -DisableRealtimeMonitoring $true”做任何事情。

于 2020-02-19T10:28:19.863 回答
0

Although on my Windows 10 machine, the Set-MpPreference -DisableRealtimeMonitoring $true works as expected, you could try manipulating it in the registry directly:

# Windows Defender DisableRealtimeMonitoring
$regpath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender"
if (!(Test-Path $regpath -PathType Container)) {
    $null = New-Item -Path $regpath -ItemType Container -Force
}
Set-ItemProperty -Path $regpath -Name "DisableRealtimeMonitoring" -Value 1 -Type DWord -Force
# restart the service
Restart-Service  -Name WinDefend -Confirm:$false -Force

To turn it back on, either remove the "DisableRealtimeMonitoring" entry or set its value to DWORD 0

于 2020-02-03T13:49:59.727 回答
-2

我用按键

ctrl + esc 键入字符串“病毒保护”输入选项卡 x 4 输入 blahblah = 其余按键以关闭防御者和防火墙以及一切 erlse,如卸载 avast 和 avg lol

于 2021-06-01T14:23:00.300 回答