Hi,
We have purchased Lansweeper a couple of months back and are extremely happy with it. We are in the process of creating a standard template for our Licensed software and I am stuck on the SQL formatting part of this report. What I have so far is working great and I am about 90% there.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Username,
tsysIPLocations.IPLocation,
tsysOS.OSname,
tblAssets.Lastseen
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Outer Join tsysIPLocations On tblAssets.IPNumeric >=
tsysIPLocations.StartIP And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Where tblAssets.AssetID In (Select tblSoftware.AssetID
From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblSoftware.softID
Where tblSoftwareUni.softwareName Like '%Acrobat%') And tblAssetCustom.State =
1
Order By tsysIPLocations.IPLocation,
tblAssets.AssetName,
tblAssets.Lastseen Desc
All I want to add to this report is to have the softwareName and softwareVersion displayed on the report as well as all the above information. Anytime I try to incorporate these two into my report I get all software for each computer with the specified search criteria.
Maybe down the road, even include serial numbers once we get all of that info loaded into LS.
Any help would be greatly appreciated!