
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2021 07:07 PM
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!
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!
Labels:
- Labels:
-
General Discussion
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2021 12:28 AM
• Experience {i.e. Windows Feature Experience Pack 120.2212.3530.0)
this is not showing. is there any options for this database?
this is not showing. is there any options for this database?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2021 08:55 PM
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
