diff --git a/scripts/auto_repairs.py b/scripts/auto_repairs.py index fe6ce046..c435956b 100644 --- a/scripts/auto_repairs.py +++ b/scripts/auto_repairs.py @@ -67,6 +67,7 @@ BASE_MENUS = { }, 'Options': ( MenuEntry('Kill Explorer', selected=False), + MenuEntry('Run AVRemover (once)'), MenuEntry('Run RKill'), MenuEntry('Sync Clock'), MenuEntry('Use Autologon', selected=False), diff --git a/scripts/wk/repairs/win.py b/scripts/wk/repairs/win.py index fc4bd8e6..4b298a65 100644 --- a/scripts/wk/repairs/win.py +++ b/scripts/wk/repairs/win.py @@ -312,10 +312,11 @@ def init_session(options) -> None: set_timezone(WINDOWS_TIME_ZONE) # One-time tasks - TRY_PRINT.run( - 'Run AVRemover...', run_tool, 'AVRemover', 'AVRemover', - download=True, msg_good='DONE', - ) + if options['Run AVRemover (once)']['Selected']: + TRY_PRINT.run( + 'Run AVRemover...', run_tool, 'AVRemover', 'AVRemover', + download=True, msg_good='DONE', + ) print('') reboot(30)