Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

mga sir good day po paanu po idisable windows defender dito sa window 10

riona1512

Apprentice
Advanced Member
Messages
91
Reaction score
0
Points
28
mga sir panu po ma enable/disbale windows defender sa windows 10
natry q n po sa reg gpedit.msc ganun p din po salamat po
 

Attachments

  • defender.jpg
    defender.jpg
    173.4 KB · Views: 14
  • def2.jpg
    def2.jpg
    179.1 KB · Views: 12

Turn Off Windows Defender Using Windows Powershell​


Windows built-in tool Powershell can also be used to turn off Windows Defender. To use this method, follow these instructions:


  1. Press start and search for “Windows Powershell” and run it as administrator.
  2. Run this command:
    Set-MpPreference -DisableRealtimeMonitoring $true
    disable-realtime-monitoring

    (Using the command will turn off the real-time protection of Windows Defender and any scheduled scans will also stop.)
  3. And once you’ve decided to turn on the Windows Defender using Windows Powershell, type this command into the Windows Powershell:
    Set-MpPreference -DisableRealtimeMonitoring $false
    enable-realtime-monitoring

Furthermore, if you completely want to uninstall Windows Defender using the Windows Powershell, you will need to follow these steps:


  1. Open Windows Powershell with administrator privileges.
  2. Type and run this command:
    Uninstall-WindowsFeature -Name Windows-Defender
    uninstall-windows-defender

Turn Off Windows Defender Using Command Prompt​


Command Prompt or CMD could also be used to turn off Windows Defender and can also be used to check its real-time status. Aside from disabling Windows Defender, CMD could also disable it permanently as well. To turn off Windows Defender using Command Prompt, perform these steps:


  1. Press Start and search for ‘CMD’ and run it as administrator.
  2. Type and run this command:
    sc stop WinDefend
  3. To make sure that Windows Defender is stopped, run this command:
    sc query WinDefend

The status of Windows Defender will be displayed. If it has stopped working then the status would appear as stopped. Moreover, to permanently turn off Windows Defender using CMD, perform these steps:


  1. Run this command:
    sc config WinDefend start= disabled
    disable-windows-defender-antivirus
  2. Then this command:
    sc stop WinDefend
  3. Reboot the computer.
  4. Run the query command again to see the status of Windows Defender:
    sc query WinDefend

Source:
Code:
https://www.technewstoday.com/how-to-turn-off-windows-defender/
 
Back
Top Bottom