Detect Anti-Virus Clients Installed

  • Thread starter Thread starter j.morel
  • Start date Start date
J

j.morel

Hi all, I'm looking to see if anyone has an easy answer for this. We
have built a custom package of SymantecAV, however I'd like to try and
script something that will detect any installed antivirus clients and
stop installation before allowing the client to continue.

Basically, does anyone have a list of the commonly used AV programs and
their default install locations? I figure I can check for the presence
of those before allowing continue.

Better yet, does anyone have an all-in-one tool that will remove all
common AV clients at once?

T.I.A.,

Jeremy
 
AKA (e-mail address removed) on 12/7/2005 in
Better yet, does anyone have an all-in-one tool that will remove all
common AV clients at once?

T.I.A.,

Jeremy
******************Reply Separator*************************
I have found a format to be very effective.
GFIA
max

NEVER download files from anywhere unless it is from the website of the
developer,manufacturer or some entity you trust. The developers
websites ALWAYS have the most up to date files that haven't been
tampered with by some third party who is "hosting"(read Leeching or
Stealing) those files without permission.
--
Virus Removal Instructions: http://home.neo.rr.com/manna4u/
Keeping Windows Clean: http://home.neo.rr.com/manna4u/keepingclean.html
Windows Help: http://home.neo.rr.com/manna4u/tools.html
Playing Nice on Usenet: http://oakroadsystems.com/genl/unice.htm#xpost
To reply by e-mail change nomail.afraid.org to gmail.com
nomail.afraid.org is setup specifically for use in USENET
feel free to use it yourself. Registered Linux User #393236
 
From: <[email protected]>

| Hi all, I'm looking to see if anyone has an easy answer for this. We
| have built a custom package of SymantecAV, however I'd like to try and
| script something that will detect any installed antivirus clients and
| stop installation before allowing the client to continue.
|
| Basically, does anyone have a list of the commonly used AV programs and
| their default install locations? I figure I can check for the presence
| of those before allowing continue.
|
| Better yet, does anyone have an all-in-one tool that will remove all
| common AV clients at once?
|
| T.I.A.,
|
| Jeremy

You might want to query the Registry instead of disk folders.

McAfee Example:
HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\TVD\VirusScan Enterprise\CurrentVersion

All AV software will be found in ...
HKEY_LOCAL_MACHINE\SOFTWARE\<AV Vendor>
 
Either look in the registry for a specific product you are interested
in. Or use WMI to query the security center and get it tell you what it
installed.
 
Back
Top