To be able to make a group for ESET Version from the ESET plugin.
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 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]'}