Build a report based on the tblMonitorHist database table and have this report mailed to you on a weekly basis by following the instructions on page 145 and beyond of our online documentation: http://www.lansweeper.com/documentation.pdf
A sample report that lists changes that occurred in the last 7 days can be seen below.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
Case tblMonitorHist.Action When 1 Then '+' When 2 Then '-' End As Action,
tblMonitorHist.MonitorModel,
tblMonitorHist.MonitorManufacturer,
tblMonitorHist.SerialNumber,
tblMonitorHist.ManufacturedDate,
tblMonitorHist.LastChanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblMonitorHist On tblAssets.AssetID = tblMonitorHist.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblMonitorHist.LastChanged > GetDate() - 7 And tblAssetCustom.State = 1
Order By tblMonitorHist.LastChanged Desc