Old name: Computer: Processor information (Built-in)
The report below will provide general processor information of all Windows computers
The report will only list assets that meet all of the following criteria:
- The asset state is set to "active".
- The asset has been successfully scanned at least once.
- The asset is a Windows computer.
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,
ProcCapacity.CPU, ProcCapacity.Name, ProcCapacity.MaxClockSpeed As ClockSpeed, ProcCapacity.NrOfProcessors AS cpuCount
From tblAssets
Inner Join (select tblAssets.AssetID, MAX(tblProcessor.MaxClockSpeed) As MaxClockSpeed, COUNT(tblProcessor.WIN32_PROCESSORid) AS NrOfProcessors,
MAX(tblProcessor.MaxClockSpeed) AS [total Proc Capacity], MAX(tblProcessor.Architecture) AS Architecture, MAX(tblProcessor.Caption) AS Name, MAX(REPLACE(REPLACE(tblProcessor.Name, '(R)', ''), '(TM)', '')) AS CPU
from tblAssets
Inner Join tblProcessor ON tblAssets.AssetID = tblProcessor.AssetID
group by tblAssets.AssetID) ProcCapacity On ProcCapacity.AssetID = tblAssets.AssetID
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 tblState.Statename = 'Active'
Order By tblAssets.Domain, tblAssets.AssetName