Hi,
You cannot let Lansweeper send you a mail when the drives are 90% full. You can only let Lansweeper send you a report or when specific event occurs in the eventlog.
What you can do is let Lansweeper send you every day a report .
We have made a report for you to check which computer drives are 90%full.
You can use the report down here:
Select Top 1000000 tsysAssetTypes.AssetTypeIcon16 As icon,
tblAssets.AssetID,
tblAssets.AssetName As [Computer Name],
(Sum(tblDiskdrives.Size) - Sum(tblDiskdrives.Freespace)) /
(Sum(tblDiskdrives.Size) / 100) As [percent used]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Group By tsysAssetTypes.AssetTypeIcon16,
tblAssets.AssetID,
tblAssets.AssetName
Order By [Computer Name]
To use the report above, do the following:
• Open the report builder under Reports/Create New Report.
• Paste the SQL code we provided at the bottom of the page.
• Left-click somewhere in the upper section of the page so the code applies.
• Give the report a Title and hit the Save & Run button to save it. Export options are listed on the left.