cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
MarkJonN
Engaged Sweeper II
Good Day!

May i know how can get this report in Lansweeper? see below needed information.

Edition: (i.e. Windows 10 Enterprise)
OS build: (i.e. 20H2)
Experience {i.e. Windows Feature Experience Pack 120.2212.3530.0)

Thank you!
2 REPLIES 2
MarkJonN
Engaged Sweeper II
• Experience {i.e. Windows Feature Experience Pack 120.2212.3530.0)

this is not showing. is there any options for this database?
drobertson
Engaged Sweeper III
You could do a report like this:




Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tsysOS.OSname As OS,
tblOperatingsystem.Caption As Edition,
tblOperatingsystem.Version As OSbuild,
tblOperatingsystem.BuildType,
tblAssets.SP As SP,
tblOperatingsystem.InstallDate,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Description,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
From tblAssets
Inner Join tblOperatingsystem On
tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join tsysIPLocations On tblAssets.LocationID = tsysIPLocations.LocationID
Where tblAssetCustom.State = 1
Order By OS,
tblAssets.AssetName,
Edition