From 5a320658c24c2a0aaaf1473c353aec7899b94c3e Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Thu, 13 May 2021 21:41:16 -0600 Subject: [PATCH] Fix Emsisoft cmd Not sure why it worked when testing locally on C: but it lost it's mind when running from E: --- scripts/wk/repairs/win.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/wk/repairs/win.py b/scripts/wk/repairs/win.py index fe1845cc..a5c648f9 100644 --- a/scripts/wk/repairs/win.py +++ b/scripts/wk/repairs/win.py @@ -1024,9 +1024,9 @@ def run_emsisoft_cmd_scan(): f'{EMSISOFT_INSTALL_PATH}/a2cmd.exe', '/directdiskaccess', f'/f={SYSTEMDRIVE}', '/rootkits', '/memory', '/traces', '/pup', '/archive', '/ntfs', '/delete', - f'/log="{log_path}"', - f'/quarantine="{quarantine_path}"', - f'/whitelist="{whitelist_path}"', + f'/log={log_path}', + f'/quarantine={quarantine_path}', + f'/whitelist={whitelist_path}', ] if IN_CONEMU: cmd.extend(['-new_console:nb', '-new_console:s33V'])