How can I disable Windows Defender using the command line?

27,736

The easiest way to do this would be to use PowerShell to disable it, the command you probably want is this:

Set-MpPreference -DisableRealtimeMonitoring $true

For an article on using PowerShell to disable/enable Windows Defender check here: http://wmug.co.uk/wmug/b/pwin/archive/2015/05/12/quickly-disable-windows-defender-on-windows-10-using-powershell

Here is the TechNet article for a more detailed look at available defender cmdlets: https://technet.microsoft.com/en-us/library/dn433280.aspx

enter image description here

Share:
27,736

Related videos on Youtube

AWarnock
Author by

AWarnock

Updated on September 18, 2022

Comments

  • AWarnock
    AWarnock over 1 year

    I am looking for a way to disable Windows Defender on Windows 8/8.1/10 using the command line. Everything I've found so far has involved using a GUI at some point, and this isn't useful for a process I am looking to automate using a script. Thanks in advance.

    • AWarnock
      AWarnock over 8 years
      @Moab I did see that one, but I need a way to do it using the command line, preferably without batch files or similar.
    • Moab
      Moab over 8 years
      A batch file is nothing more than a bunch commands for the command prompt, the reason you use a batch file is because there is too many commands to do it manually for what you want to do.
  • AWarnock
    AWarnock over 8 years
    Thanks for the links. I guess I missed those in my searching.
  • Abraxas
    Abraxas over 8 years
    @AWarnock Absolutely! Let me know if you need any more information in order to mark this as the accepted answer.
  • YumYumYum
    YumYumYum over 6 years
    You must use PowerShell (Command prompt)