From 772b807c3d7a3285ce836c3ebd1e960f93f200e5 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 19 Jun 2019 21:38:30 -0600 Subject: [PATCH] Added AVRemover sections --- .bin/Scripts/functions/update.py | 13 +++++++++++++ .bin/Scripts/settings/sources.py | 4 +++- .bin/Scripts/update_kit.py | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/update.py b/.bin/Scripts/functions/update.py index e2ac3f21..05653484 100755 --- a/.bin/Scripts/functions/update.py +++ b/.bin/Scripts/functions/update.py @@ -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') diff --git a/.bin/Scripts/settings/sources.py b/.bin/Scripts/settings/sources.py index 817441b5..e1537f33 100644 --- a/.bin/Scripts/settings/sources.py +++ b/.bin/Scripts/settings/sources.py @@ -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', diff --git a/.bin/Scripts/update_kit.py b/.bin/Scripts/update_kit.py index 086535a4..4ac91ffb 100644 --- a/.bin/Scripts/update_kit.py +++ b/.bin/Scripts/update_kit.py @@ -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 ##