Can you pl send the files which causes hang. You can use command line scanner to find the the file where it stops.
The command line scanner is called "cavcons.exe" and is in the "c:\program files\comodo\comodo antivirus" folder. You will need to specify what you want to scan and where you want the report file written.
In the sample batch file below,
%1=the drive that CAV is installed on - usually C
%2=the drive that you want the report file written to
%3=the drive that you want to scan
These values are entered as parameters on the command line.
CUT AND PASTE THE LINES BETWEEN THE ASTERISKS INTO A TEXT FILE AND SAVE IT AS CAVSCAN.BAT
*****************************************
[ at ]echo off
%1:
cd \program files\comodo\comodo antivirus
cavcons /R=%2:\scan_report.txt %3:\*.*
*****************************************
If you wanted to scan all of drive C: and save the report file to the root of drive D: and your CAV is installed on drive C:, you would run
cavscan c d c
This would have the same effect as typing in "cavcons /R=d:\scan_report.txt c:\*.*"
If anyone wants to add error checking for the parameters - jump on in!
Hope this helps,
Ewen :-)
(WCF3)