diff --git a/scripts/auto_repairs.py b/scripts/auto_repairs.py index 9172e2c4..c592d0b1 100644 --- a/scripts/auto_repairs.py +++ b/scripts/auto_repairs.py @@ -77,7 +77,6 @@ BASE_MENUS = { 'Options': ( MenuEntry('Kill Explorer', selected=False), MenuEntry('Run RKill'), - MenuEntry('Run TDSSKiller (once)'), MenuEntry('Sync Clock'), MenuEntry('Use Autologon', selected=False), ), @@ -92,7 +91,6 @@ PRESETS = { 'Default': { # Will be expanded at runtime using BASE_MENUS 'Options': ( 'Run RKill', - 'Run TDSSKiller (once)', 'Sync Clock', ), }, diff --git a/scripts/wk/cfg/sources.py b/scripts/wk/cfg/sources.py index 8839b011..d27d8995 100644 --- a/scripts/wk/cfg/sources.py +++ b/scripts/wk/cfg/sources.py @@ -29,7 +29,6 @@ SOURCES = { 'RKill': 'https://download.bleepingcomputer.com/grinler/rkill.exe', 'RegDelNull': 'https://live.sysinternals.com/RegDelNull.exe', 'RegDelNull64': 'https://live.sysinternals.com/RegDelNull64.exe', - 'TDSSKiller': 'https://media.kaspersky.com/utilities/VirusUtilities/EN/tdsskiller.exe', # Build Kit 'AIDA64': 'https://download.aida64.com/aida64engineer692.zip', diff --git a/scripts/wk/repairs/win.py b/scripts/wk/repairs/win.py index 8d7a3478..4f6dcf29 100644 --- a/scripts/wk/repairs/win.py +++ b/scripts/wk/repairs/win.py @@ -341,8 +341,6 @@ def init_session(options) -> None: 'Run AVRemover...', run_tool, 'AVRemover', 'AVRemover', download=True, msg_good='DONE', ) - if options['Run TDSSKiller (once)']['Selected']: - TRY_PRINT.run('Running TDSSKiller...', run_tdsskiller, msg_good='DONE') print('') @@ -1392,24 +1390,6 @@ def run_rkill() -> None: run_tool('RKill', 'RKill', *cmd_args, download=True) -def run_tdsskiller() -> None: - """Run TDSSKiller scan.""" - log_path = format_log_path(log_name='TDSSKiller', timestamp=True, tool=True) - log_path.parent.mkdir(parents=True, exist_ok=True) - quarantine_path = set_quarantine_path('TDSSKiller') - quarantine_path.mkdir(parents=True, exist_ok=True) - cmd_args = ( - '-accepteula', - '-accepteulaksn', - '-l', log_path, - '-qpath', quarantine_path, - '-qsus', - '-dcexact', - '-silent', - ) - run_tool('TDSSKiller', 'TDSSKiller', *cmd_args, download=True) - - def uninstall_emsisoft_cmd(): """Uninstall EmsisoftCmd.""" delete_folder(EMSISOFT_INSTALL_PATH, force=True, ignore_errors=True)