[Solved]Disable Windows Defender?
Posted: Sun Jun 17, 2012 4:03 am
Is there a way to turn off / disable Windows Defender using a UVK script?
Thanks,
NM
Thanks,
NM
Share your thoughts about our software. Post comments or bug reports. Ask for help on how to use UVK or any of our programs.
https://www.carifred.com/uvk/forum/
Code: Select all
<CmdScript>
@echo off
sc.exe stop WinDefend
sc.exe config WinDefend start= disabled
Code: Select all
<CmdScript>
@echo off
sc.exe config WinDefend start= delayed-auto
sc.exe start WinDefend