Added AVRemover sections
This commit is contained in:
parent
6e9de7f2fa
commit
772b807c3d
3 changed files with 17 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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 ##
|
||||
|
|
|
|||
Loading…
Reference in a new issue