
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-22-2021 09:29 AM
Hi, I can't work out how to create a report for the number of patches applied over the past year. This is just a calculation of applied patches on all Windows systems.
Any thoughts?
Appreciate the help!
Darren
Any thoughts?
Appreciate the help!
Darren
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2021 05:03 PM
Hi Darren,
Is this what you after, so its a count of KB's by KB Install date within 365 Days ?
Date code from here :- https://www.lansweeper.com/forum/yaf_postsm57381_All-computers-purchased-within-the-last-X-number-of-years.aspx#post57381
Is this what you after, so its a count of KB's by KB Install date within 365 Days ?
Select Top 1000000 Count(tblQuickFixEngineering.QFEID) As [Count Of KB's],
tblQuickFixEngineeringUni.HotFixID
From tblAssets
Inner Join tblQuickFixEngineering On
tblAssets.AssetID = tblQuickFixEngineering.AssetID
Inner Join tblQuickFixEngineeringUni On tblQuickFixEngineeringUni.QFEID =
tblQuickFixEngineering.QFEID
Where DateDiff(dd, tblQuickFixEngineering.InstalledOn, GetDate()) / 365.25 < 1
Group By tblQuickFixEngineeringUni.HotFixID
Date code from here :- https://www.lansweeper.com/forum/yaf_postsm57381_All-computers-purchased-within-the-last-X-number-of-years.aspx#post57381
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2021 12:29 AM
Hey Andy.S this is perfect! Really appreciate your work!
Thanks
Darren
Thanks
Darren

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2021 05:03 PM
Hi Darren,
Is this what you after, so its a count of KB's by KB Install date within 365 Days ?
Date code from here :- https://www.lansweeper.com/forum/yaf_postsm57381_All-computers-purchased-within-the-last-X-number-of-years.aspx#post57381
Is this what you after, so its a count of KB's by KB Install date within 365 Days ?
Select Top 1000000 Count(tblQuickFixEngineering.QFEID) As [Count Of KB's],
tblQuickFixEngineeringUni.HotFixID
From tblAssets
Inner Join tblQuickFixEngineering On
tblAssets.AssetID = tblQuickFixEngineering.AssetID
Inner Join tblQuickFixEngineeringUni On tblQuickFixEngineeringUni.QFEID =
tblQuickFixEngineering.QFEID
Where DateDiff(dd, tblQuickFixEngineering.InstalledOn, GetDate()) / 365.25 < 1
Group By tblQuickFixEngineeringUni.HotFixID
Date code from here :- https://www.lansweeper.com/forum/yaf_postsm57381_All-computers-purchased-within-the-last-X-number-of-years.aspx#post57381

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2021 12:27 AM
Andy.S wrote:
Hi Darren,
Is this what you after, so its a count of KB's by KB Install date within 365 Days ?Select Top 1000000 Count(tblQuickFixEngineering.QFEID) As [Count Of KB's],
tblQuickFixEngineeringUni.HotFixID
From tblAssets
Inner Join tblQuickFixEngineering On
tblAssets.AssetID = tblQuickFixEngineering.AssetID
Inner Join tblQuickFixEngineeringUni On tblQuickFixEngineeringUni.QFEID =
tblQuickFixEngineering.QFEID
Where DateDiff(dd, tblQuickFixEngineering.InstalledOn, GetDate()) / 365.25 < 1
Group By tblQuickFixEngineeringUni.HotFixID
Date code from here :- https://www.lansweeper.com/forum/yaf_postsm57381_All-computers-purchased-within-the-last-X-number-of-years.aspx#post57381
