Fix Emsisoft cmd

Not sure why it worked when testing locally on C: but it lost it's mind
when running from E:
This commit is contained in:
2Shirt 2021-05-13 21:41:16 -06:00
parent 93fbd29a1c
commit 5a320658c2
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -1024,9 +1024,9 @@ def run_emsisoft_cmd_scan():
f'{EMSISOFT_INSTALL_PATH}/a2cmd.exe', '/directdiskaccess', f'{EMSISOFT_INSTALL_PATH}/a2cmd.exe', '/directdiskaccess',
f'/f={SYSTEMDRIVE}', f'/f={SYSTEMDRIVE}',
'/rootkits', '/memory', '/traces', '/pup', '/archive', '/ntfs', '/delete', '/rootkits', '/memory', '/traces', '/pup', '/archive', '/ntfs', '/delete',
f'/log="{log_path}"', f'/log={log_path}',
f'/quarantine="{quarantine_path}"', f'/quarantine={quarantine_path}',
f'/whitelist="{whitelist_path}"', f'/whitelist={whitelist_path}',
] ]
if IN_CONEMU: if IN_CONEMU:
cmd.extend(['-new_console:nb', '-new_console:s33V']) cmd.extend(['-new_console:nb', '-new_console:s33V'])