26 lines
727 B
Python
26 lines
727 B
Python
# Wizard Kit: Install ESET NOD32 AV
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Init
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
sys.path.append(os.getcwd())
|
|
from functions.setup import *
|
|
init_global_vars()
|
|
os.system('title {}: Install ESET NOD32 AV'.format(KIT_NAME_FULL))
|
|
global_vars['LogFile'] = r'{LogDir}\Install ESET NOD32 AV.log'.format(**global_vars)
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
stay_awake()
|
|
clear_screen()
|
|
print_info('{}: Install ESET NOD32 AV\n'.format(KIT_NAME_FULL))
|
|
scan_pups = ask('Enable PUP scans in ESET?')
|
|
install_eset_nod32_av(scan_pups)
|
|
print_standard('\nDone.')
|
|
exit_script()
|
|
except SystemExit:
|
|
pass
|
|
except:
|
|
major_exception()
|