http://www.governmentsecurity.org/forum/in...81&hl=CCApp.exe
CODE
pgm = "<process name>"
set wmi = getobject("winmgmts:")
sQuery = "select * from win32_process " _
& "where name='" & pgm & "'"
set processes = wmi.execquery(sQuery)
for each process in processes
process.terminate
next
I would like to gather a list of AV processess that this script is capable of terminating. As i understand it works on Norton Antivirus 2004. I have only personally tried this script on Kaspersky Personal Edition (kav.exe) and was unsuccessful in terminating the process. However, i know the script works as it worked for other windows processess.
To save me installing loads of anti virii progs i wander if some of you could run this script and try to terminate your AV. Could you please post the AV product, version and whether the script was successful.
Just dump the code in a .vbs file and change the pgm variable to your AV process name.
Cheers





