The following report matches the reports generated under
Configuration\Custom scanning and it lists the filesize. We recommend having a look the Database Dictionary as well which provides as overview about which data is stored in which table. You can access it at the top of the report editor.
Select tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon16 As icon,
tblAssets.Domain,
tblFileVersions.FilePathfull,
tblFileVersions.FileVersion,
tblFileVersions.CompanyName,
tblFileVersions.Filesize,
tblFileVersions.CreationDate,
tblFileVersions.LastAccessed,
tblFileVersions.LastModified,
tblFileVersions.Lastchanged,
TsysLastscan.Lasttime As [Last scanned]
From tsysAssetTypes
Inner Join tblAssets On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblFileVersions On tblAssets.AssetID = tblFileVersions.AssetID
Inner Join TsysLastscan On tblAssets.AssetID = TsysLastscan.AssetID
Inner Join TsysWaittime On TsysLastscan.CFGcode = TsysWaittime.CFGCode
Where tblFileVersions.FilePathfull Like '%iexplore.exe' And
TsysWaittime.CFGname = 'FILES' And tblFileVersions.Found = 1