In our options, we have it set to "Set assets to non-active if not seen in the last [30] days."
However we found 395 Windows assets whose last seen day was greater than 30 days ago.
Why are these not being changed to non-active automatically?
Have run the following SQL for now to fix it, but shouldn't have had to...
UPDATE [tblAssetCustom]
SET [State] = 2
WHERE [AssetID] IN
(
SELECT [tblAssets].[AssetID] FROM [tblAssets]
INNER JOIN [tblAssetCustom] on [tblAssets].[AssetID] = [tblAssetCustom].[AssetID]
WHERE [Assettype] = -1 AND [Lastseen] < (GETDATE() - 30)
AND [State] = 1
)