Is there a way to detect whether there is an antivirus software installed in a machine using C#? I know the Security Center detects antivirus software but how can you detect that in C#?
A link would be sufficient. :D
Thanks
|
|
|
According to Microsoft, The Windows Security Center uses a two-tiered approach for detection status. One tier is manual, and the other tier is automatic through Windows Management Instrumentation (WMI). In manual detection mode, Windows Security Center searches for registry keys and files that are provided to Microsoft by independent software manufacturers. These registry keys and files let Windows Security Center detect the status of independent software. In WMI mode, software manufacturers determine their own product status and report that status back to Windows Security Center through a WMI provider. In both modes, Windows Security Center tries to determine whether the following is true: An antivirus program is present. The antivirus signatures are up-to-date. Real-time scanning or on-access scanning is turned on for antivirus programs. For firewalls, Windows Security Center detects whether a third-party firewall is installed and whether the firewall is turned on or not. So in order to determine the presence of an antivirus software, you can use the WMI making a connection to the Look at this sample code
|
|||||||||||
|
|
You can use WMI; see here. |
|||
|
|
The WMI query changes slightly in Vista SP2 and beyond. Try this part \root\SecurityCenter2 instead of \root\SecurityCenter The results are slightly different as well. You can still get the display name, but you'll need to do a bit of bit masking for the ProductState field to determine if the onAccessScanner is enabled / disabled and the upToDate kind of information. |
|||
|
|