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

How can i run report that show my workstations that have sp2 of xp ?
1 REPLY 1
Hemoco
Lansweeper Alumni
Should be something like

SELECT     dbo.tblComputers.Computername, dbo.tblOperatingsystem.ServicePackMajorVersion, dbo.tblOperatingsystem.Version
FROM dbo.tblComputers INNER JOIN
dbo.tblOperatingsystem ON dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername
WHERE (dbo.tblOperatingsystem.ServicePackMajorVersion = '2') AND (dbo.tblOperatingsystem.Version = '5.1.2600')