→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Pangts
Engaged Sweeper
Hi Lansweeper,

We discover this product and was immediately attracted to it's features, affordability and ease of use, so we bought it and are now implementing to our regional offices under a single instance.

Can you please advice how can we read the Virus Signature Version (Not just the antivirus version) off the Lansweeper database?

We are using:
Trend Micro OfficeScan
Program version: 10.5.1766
Roaming mode: No


regards,

Tin Siong
Makino Asia
1 REPLY 1
rgross
Engaged Sweeper III
You have to setup a custom registry scan, have it scan here for that information:
HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc.

PatternDate value is what you want.



Then write a report to show you the definition dates:

Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique, tblComputers.Username, tblRegistry.Value From tblRegistry Inner Join tblComputers On tblComputers.Computername = tblRegistry.Computername Where tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc.' And tblRegistry.Valuename = 'PatternDate' Order By tblComputers.Computer