cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
kerry-ann
Engaged Sweeper II
How can I generate a report that shows only two types of processors?
1 ACCEPTED SOLUTION
Nick_VDB
Champion Sweeper III
The report below will give back two types of processors. Just replace the highlighted names with the processors you are looking for. Instructions for adding the report below to your Lansweeper installation can be found here.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Processor,
tblAssets.NrProcessors,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where (tblAssets.Processor Like 'Intel Core i5-4590T CPU%' Or
tblAssets.Processor Like 'Intel Xeon CPU E5410%') And tblAssetCustom.State =
1

View solution in original post

1 REPLY 1
Nick_VDB
Champion Sweeper III
The report below will give back two types of processors. Just replace the highlighted names with the processors you are looking for. Instructions for adding the report below to your Lansweeper installation can be found here.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Processor,
tblAssets.NrProcessors,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where (tblAssets.Processor Like 'Intel Core i5-4590T CPU%' Or
tblAssets.Processor Like 'Intel Xeon CPU E5410%') And tblAssetCustom.State =
1