Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
udiburg
Engaged Sweeper
Hi,

How can I configure the program to monitor if TrendMicro antivirus is installed?

Udi.
8 REPLIES 8
Anonymous
Not applicable
It's well documented, sorry I can't help you more than this.
Anonymous
Not applicable
Scan for the file PccNTMon.exe then this report will give you the computers where Trend is not installed:

SELECT     TOP (100) PERCENT dbo.tblComputers.Computername AS Computer, dbo.tblFileVersions.Lastchanged
FROM dbo.tblComputers INNER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername LEFT OUTER JOIN
dbo.tblFileVersions ON dbo.tblComputers.Computername = dbo.tblFileVersions.Computername AND dbo.tblFileVersions.Found = 0
WHERE (dbo.tblFileVersions.FilePathfull LIKE '%PccNTMon.exe') AND (dbo.tblComputersystem.Domainrole LIKE '1')
ORDER BY Computer


This report will exclude servers since I only use Trend on PC's
BullGates wrote:
Scan for the file PccNTMon.exe then this report will give you the computers where Trend is not installed:

SELECT     TOP (100) PERCENT dbo.tblComputers.Computername AS Computer, dbo.tblFileVersions.Lastchanged
FROM dbo.tblComputers INNER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername LEFT OUTER JOIN
dbo.tblFileVersions ON dbo.tblComputers.Computername = dbo.tblFileVersions.Computername AND dbo.tblFileVersions.Found = 0
WHERE (dbo.tblFileVersions.FilePathfull LIKE '%PccNTMon.exe') AND (dbo.tblComputersystem.Domainrole LIKE '1')
ORDER BY Computer


This report will exclude servers since I only use Trend on PC's


Ok,
But how do I create a report from it in the freeware version?
BullGates wrote:
Scan for the file PccNTMon.exe then this report will give you the computers where Trend is not installed:

SELECT     TOP (100) PERCENT dbo.tblComputers.Computername AS Computer, dbo.tblFileVersions.Lastchanged
FROM dbo.tblComputers INNER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername LEFT OUTER JOIN
dbo.tblFileVersions ON dbo.tblComputers.Computername = dbo.tblFileVersions.Computername AND dbo.tblFileVersions.Found = 0
WHERE (dbo.tblFileVersions.FilePathfull LIKE '%PccNTMon.exe') AND (dbo.tblComputersystem.Domainrole LIKE '1')
ORDER BY Computer


This report will exclude servers since I only use Trend on PC's


Thanks,

I will check and reply.
Hemoco
Lansweeper Alumni
You can do it in the free version as well if you manually edit the sql commands and tables.
udiburg
Engaged Sweeper
Lansweeper wrote:
You can do it in the free version as well if you manually edit the sql commands and tables.


Wow! Sounds complicated. I have SQL express, can I do it on it as well?
Hemoco
Lansweeper Alumni
If it's in the software list you can create a report for it.
If it's not in the software list you need to specify the filename to scan for and create a report based on this.
udiburg
Engaged Sweeper
Lansweeper wrote:
If it's in the software list you can create a report for it.
If it's not in the software list you need to specify the filename to scan for and create a report based on this.


As I read in the documentation, creating new reports is available only in the Premium version. Isn't it?

Archive

This board contains archived posts from the retired Lansweeper Forum and Insiders Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now