Added AVRemover sections

This commit is contained in:
2Shirt 2019-06-19 21:38:30 -06:00
parent 6e9de7f2fa
commit 772b807c3d
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
3 changed files with 17 additions and 1 deletions

View file

@ -1177,6 +1177,19 @@ def update_winaiorepair():
# Uninstallers
def update_eset_av_remover():
# ESET AVRemover32
## NOTE: Lives in .bin uncompressed
# Stop running processes
for exe in ['AVRemover32.exe', 'AVRemover64.exe']:
kill_process(exe)
# Download
dest = r'{}\AVRemover'.format(global_vars['BinDir'])
download_generic(dest, 'AVRemover.exe', SOURCE_URLS['AVRemover32'])
download_generic(dest, 'AVRemover64.exe', SOURCE_URLS['AVRemover64'])
def update_iobit_uninstaller():
# Stop running processes
kill_process('IObitUninstallerPortable.exe')

View file

@ -15,8 +15,10 @@ SOURCE_URLS = {
'ClassicStartSkin': 'http://www.classicshell.net/forum/download/file.php?id=3001&sid=9a195960d98fd754867dcb63d9315335',
'Du': 'https://download.sysinternals.com/files/DU.zip',
'ERUNT': 'http://www.aumha.org/downloads/erunt.zip',
'ESET Online Scanner': 'https://download.eset.com/com/eset/tools/online_scanner/latest/esetonlinescanner_enu.exe',
'ESET AVRemover32': 'https://download.eset.com/com/eset/tools/installers/av_remover/latest/avremover_nt32_enu.exe',
'ESET AVRemover64': 'https://download.eset.com/com/eset/tools/installers/av_remover/latest/avremover_nt64_enu.exe',
'ESET NOD32 AV': 'https://download.eset.com/com/eset/apps/home/eav/windows/latest/eav_nt64.exe',
'ESET Online Scanner': 'https://download.eset.com/com/eset/tools/online_scanner/latest/esetonlinescanner_enu.exe',
'Everything32': 'https://www.voidtools.com/Everything-1.4.1.935.x86.en-US.zip',
'Everything64': 'https://www.voidtools.com/Everything-1.4.1.935.x64.en-US.zip',
'FastCopy': 'https://fastcopy.jp/archive/FastCopy380_installer.exe',

View file

@ -93,6 +93,7 @@ if __name__ == '__main__':
# Uninstallers
print_info(' Uninstallers')
try_and_print(message='ESET AV Remover...', function=update_eset_av_remover, other_results=other_results, width=40)
try_and_print(message='IObit Uninstaller...', function=update_iobit_uninstaller, other_results=other_results, width=40)
## Review ##