-1

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?

1 Answers1

0

You can run this command using python like this;

import os

command = "sc stop WinDefend"

os.system(command)
Faisal Nazik
  • 2,367
  • 4
  • 17
  • 40