I have an old computer that I want to try to remove Windows Defender on with a python script. I tried to use the command:
sc stop WinDefend
This command isn’t useful since it is used by the command prompt. Can someone show me?
I have an old computer that I want to try to remove Windows Defender on with a python script. I tried to use the command:
sc stop WinDefend
This command isn’t useful since it is used by the command prompt. Can someone show me?
You can run this command using python like this;
import os
command = "sc stop WinDefend"
os.system(command)