1

I need to disable windows defend but I'm not able. I think i messed up in the regedit section in the past and now all the settings can't be changed.

I tried deleting the files i added in regedit but didn't work, tried to change the value but didn't work either.

If i click on dismiss it will ask if i want to allow windows to make changes, but nothing happens

This is my Windows Defender registry:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender] "DisableAntiSpyware"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Policy Manager] "DisableAntiSpyware"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection] "DisableBehaviorMonitoring"=dword:00000000 "DisableOnAccessProtection"=dword:00000000 "DisableScanOnRealtimeEnable"=dword:00000000

Will be grateful if you could help me

fully void
  • 11
  • 1

2 Answers2

1

Registry changes are usually dangerous unless done by a competent program or a skilled expert.

At this point, because changes have been made and cannot be returned to normal, back up your system and then reinstall Windows.

Preferably use the Manufacturer’s Recovery USB if you can. Otherwise be sure to update all drivers when you reinstall.

Good Luck.

0

You can use the Powershell command to turn off/on the Windows firewall:

Please click "Start" and enter "PowerShell" --> open "PowerShell" and enter the following command --> then press the "Enter" key to run the command and the firewall will turn off.

Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False

Turn on firewall by run the following PowerShell command:

Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True

Display the current status of the firewall can also be achieved through PowerShell:

Get-NetFirewallProfile -all | select -Property name,enabled

Sunny
  • 704