cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Daniel_B
Lansweeper Alumni
Old name: Computer: Memory changes (Built-in)

The report below lists any changes in the memory configuration of computers since the first scan.

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.
  • A change occurred in the memory configuration (installed modules, capacity, speed, ...).


SELECT DISTINCT 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,
CASE tblPhysicalMemoryhist.Action WHEN 1 THEN 'Added' WHEN 2 THEN 'Removed' END AS Action, tblPhysicalMemoryHist.DeviceLocator,
CEILING(tblPhysicalMemoryHist.Capacity / 1024 / 1024 / 1024) AS CapacityGB, TsysMemorytypes.MemoryName,
tblPhysicalMemoryHist.Lastchanged
FROM tblAssets
INNER JOIN tblPhysicalMemoryHist ON tblAssets.AssetID = tblPhysicalMemoryHist.AssetID
INNER JOIN tsysMemorytypes ON tblPhysicalMemoryHist.MemoryType = TsysMemorytypes.Memorytype
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 tblPhysicalMemoryHist.Lastchanged DESC, tblAssets.Domain, tblAssets.AssetName, tblPhysicalMemoryHist.DeviceLocator
0 REPLIES 0