cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
crichie
Engaged Sweeper
I currently use the report "Computer: System Configuration overview".

I'd like to add an additional column to this report call Asset State.

This is the following item I'm trying to report on.



2 REPLIES 2
crichie
Engaged Sweeper
You guys are awesome!

Thank you so much for an awesome product AND support!
Hemoco
Lansweeper Alumni
This report only includes active computers by default. Adding the state column only makes sense if you remove this criterion. Example:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tsysOS.Image As icon,
tblAssets.Domain,
tsysOS.OSname,
tblAssets.Description,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.Memory,
Cast(Cast(Cast(tblDiskdrives.Size As bigint) / 1024 / 1024 / 1024 As
numeric) As nvarchar) As [Disk size],
tblAssets.NrProcessors As #CPU,
tblAssets.Processor,
tblAssetCustom.Model,
tblAssetCustom.Manufacturer,
tblAssetCustom.Serialnumber As Serial,
tblAssets.IPAddress As [IP Address],
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblState.Statename As State
From tblAssets
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Left Outer Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblState On tblState.State = tblAssetCustom.State
Where tblDiskdrives.Caption = 'c:'
Order By tblAssets.AssetID