Removing Old Antivirus Listings from Security Center

Comments

3 comments

  • Lowell Picklyk

    I was about to submit a ticket about this, and one of the suggestions was this article. So that's cool. But with potentially now hundreds of computers where we have this issue, this article is not an MSP-friendly solution. I get that this isn't a CR problem particularly, though RMMs are capable of identifying the only current AV product just fine.

    It looks like this might be difficult to build a script around... is it possible to have CR dev folks find out how all the RMMs determine the active AV product and use that method instead?

    0
    Comment actions Permalink
  • Lowell Picklyk

    Also to this process should be added a line that you have to match up the GUID shown in the command prompt result with the GUID you want to remove in the WMI query; it does not show the friendly names using this query.

    0
    Comment actions Permalink
  • Lowell Picklyk

    Found this Powershell script that deletes all WMI AV entries, which supposedly get rebuilt on reboot or next time WMI does inventory. I will test and reply back here. It definitely clears all of them out:

    Get-WmiObject -Namespace root\SecurityCenter2 -Class AntiVirusProduct | ForEach-Object{$_.Delete()}

    0
    Comment actions Permalink

Article is closed for comments.