+2
Pending Review

To be able to make a group for ESET Version from the ESET plugin.

Bob Kneeland 5 years ago updated 3 years ago 3

I have installed the ESET plugin. I would like to make groups based upon what version of ESET they are running so I know who I need to update. Can you make it so I can create groups based on "ESET Version"?

I also tried to filter on the Access page by ESET Endpoint Antivirus. That does not work either. 

I am looking for the same feature, something like a variable $ESET.ProductName or  $ESET.ProductVersion we can use to make filtered group.

I use this command from the "Run Command" to see what version is installed. I did not write this. I copied from an the old ESET plugin...


powershell $ESET = (Get-ItemProperty -ErrorAction SilentlyContinue -Path 'hklm:\SOFTWARE\ESET\ESET Security\CurrentVersion\Info'); If($ESET -eq $null){write-host "[ESET] Product not found."}else{write-host [ESET] $ESET.ProductName $ESET.ProductVersion; write-host '[br]'$ESET.ScannerVersion'[ve]'}