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

Could someone help or explain how i write a report on the following.

Windows 7 pc's only.
Kb3172605 installed.
1 REPLY 1
Nick_VDB
Champion Sweeper III
You can use the following report to get the information that you are after. Instructions for adding this report to your Lansweeper installation can be found here. If you are interested in building or modifying reports, we do recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, which explains in great detail what each database table and field stores. More information on the dictionary can be found here.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Lastseen,
tsysOS.OSname,
tsysOS.Image As icon,
tblQuickFixEngineeringUni.HotFixID,
tblQuickFixEngineeringUni.Description,
tblQuickFixEngineering.InstalledOn
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblQuickFixEngineering On tblAssets.AssetID =
tblQuickFixEngineering.AssetID
Inner Join tblQuickFixEngineeringUni On tblQuickFixEngineeringUni.QFEID =
tblQuickFixEngineering.QFEID,
tsysOS
Where tsysOS.OSname = 'Win 7' And tblQuickFixEngineeringUni.HotFixID =
'KB3172605' And tblAssetCustom.State = 1
Order By tblAssets.AssetName,
tblQuickFixEngineering.InstalledOn Desc