We added a report below that give the scan time information and scanning errors. You can follow the information found
here to add the report to Lansweeper.
Select Top 1000000 tblAssets.AssetID,
tsysOS.Image As icon,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tblAssets.IPAddress,
tblOperatingsystem.Caption As OS,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssets.Lasttriggered,
tblAssets.LastScheduled,
tblAssets.LastActiveScan,
tblAssets.LastIPScan,
tblAssets.LastLsPush,
tblAssets.LastSaved,
tblAssets.Scanserver,
tblAssets.ServiceVersion,
tsyserrortype.Errorname As Error,
tblErrors.CFGname As Item,
tblErrors.ErrorText As Message
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join tblOperatingsystem On tblAssets.AssetID = tblOperatingsystem.AssetID
Left Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblErrors On tblAssets.AssetID = tblErrors.AssetID
Inner Join tsyserrortype On tblErrors.ErrorType = tsyserrortype.ErrorType
Where tblAssetCustom.State = 1
Order By tblAssets.AssetName,
Error