
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2025 01:29 PM
Hi
I can get monthwise data but is there a report that tells me how to find all devices on network that have patches missing for more than 90 days.
Labels:
- Labels:
-
Finished Reports
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-18-2025 05:43 AM - edited ‎02-18-2025 05:44 AM
Try this
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.oscode,
tblAssets.BuildNumber,
tblAssets.Version,
tblAssets.Username,
tblAssets.IPAddress,
Max(Convert(date,tblQuickFixEngineering.InstalledOn)) As lastPatchDate,
Max(tblQuickFixEngineering.qfeid) As fixversion,
tblAssets.Lastseen
From tblQuickFixEngineering
Inner Join tblAssets On tblAssets.AssetID = tblQuickFixEngineering.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Group By tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.oscode,
tblAssets.BuildNumber,
tblAssets.Version,
tblAssets.Username,
tblAssets.IPAddress,
tblAssets.Lastseen
Having Max(Convert(date,tblQuickFixEngineering.InstalledOn)) < GetDate() - 90
Order By lastPatchDate Desc
