Sorry I forgot to mention that report shows computers but no other devices.
I want full asset list: switches, firewall, all IP devices.
Contacted support and got really quick reply and solution, see below:
Hi,
Other devices do not have an Oscode, so you will need to change the link to have them all.
Would suggest the following report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.IPAddress As IP,
tblAssets.Mac,
tsysIPLocations.IPLocation,
tblAssetCustom.Model,
tblAssetCustom.Serialnumber,
tsysOS.OSname,
tsysAssetTypes.AssetTypeIcon16 As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Outer Join tsysIPLocations On tblAssets.IPNumeric >=
tsysIPLocations.StartIP And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssets.IPAddress <> '' And tsysIPLocations.IPLocation = 'CGH LAN'
Order By tblAssets.IPNumeric
Regards,
The Lansweeper team