Create Python script that can disable all antivirus on windows also add features and full functionality of advanced code Add functions
def scan(): path = sys.argv[1] if os.path.exists(path): if os.path.isdir(path): for root, dirs, files in os.walk(path): for f in files: if f.endswith('.exe'): exe = os.path.join(root, f) if check_pe_file(exe): logger.warning('%s is infected' % exe) else: if f.endswith('.exe'): exe = os.path.join(path) if check_pe_file(exe): logger.warning('%s is infected' % exe) else: logger.error('path does not exist')