cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Rajapack_GmbH
Engaged Sweeper
Hello
When I run the report 'Memory: Less Than 8GB RAM' does not display PC ', a PC is not displayed even though only 4GB are installed.

The report is the default report.
The PC was also scanned today is actual.
2 REPLIES 2
Rajapack_GmbH
Engaged Sweeper
Thanks for the customized request, unfortunately, so synonymous with this one PC is not displayed.
David_G
Lansweeper Employee
Lansweeper Employee
There is no default report for computers with less than 8GB memory. However, there is a default report for computers with less than 2 GB of RAM that is called 'Memory: Less than 2GB RAM'. If you want to change or edit an existing built-in report regarding RAM, you will have to make sure that it filters on computers with less than 'x' MB of RAM and not in GB. Below you can find a sample report that will give back computers with less than 8 GB of RAM.

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.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssets.Memory
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblAssets.Memory < 8096 And tblState.Statename = 'Active'
Order By tblAssets.Domain,
tblAssets.AssetName