Lansweeper wrote:
We cannot reproduce the problem.
Anyone else with this issue?
I have the same issue: my setup is 3.5.1, upgraded from 3.5, upgraded from 3.2. I never tried this on 3.2 but on 3.5 it was not working
These are the SQL queries
NoFSecure (which reports nothing if run into SQL Analyzer but I have no FSecure installed anywhere)
SELECT
dbo.tblComputers.Computername AS Computer,
dbo.tblOperatingsystem.Description,
dbo.web30repdomainswithfsecure2.Domain,
dbo.tblFileVersions.Lastchanged
FROM
dbo.tblComputers
INNER JOIN dbo.tblComputersystem ON (dbo.tblComputers.Computername = dbo.tblComputersystem.Computername)
INNER JOIN dbo.web30repdomainswithfsecure2 ON (dbo.tblComputers.Domain = dbo.web30repdomainswithfsecure2.Domain)
LEFT OUTER JOIN dbo.tblOperatingsystem ON (dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername)
LEFT OUTER JOIN dbo.tblFileVersions ON (dbo.tblComputers.Computername = dbo.tblFileVersions.Computername)
AVG (which reports all my computers if run into SQL Analyzer, none of them with avg installed)
SELECT
dbo.tblComputers.Computername AS Computer,
dbo.tblOperatingsystem.Description,
dbo.tblFileVersions.FilePathfull,
dbo.tblFileVersions.Lastchanged
FROM
dbo.tblComputers
INNER JOIN dbo.tblComputersystem ON (dbo.tblComputers.Computername = dbo.tblComputersystem.Computername)
LEFT OUTER JOIN dbo.tblOperatingsystem ON (dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername)
LEFT OUTER JOIN dbo.tblFileVersions ON (dbo.tblComputers.Computername = dbo.tblFileVersions.Computername)