ā12-06-2023 05:36 AM
We need to track change Windows 10 builds. So I check OS history and write query:
Select Top 1000000 *
From tblOperatingsystemHist
Then update some Windows 10 but query result is empty.
Please fix tracker to support Win 10 Builds.
ā12-06-2023 08:41 PM
Absolutely right, but difficult to report on though. Maybe someone with supersqlpowers can right us a query that lines up all past OS upgrades from the last 30 days? Preferably showing old build vs new build.
ā12-06-2023 12:59 PM
We've been looking too for some kind of report that shows 'real' OS upgrades. This might show what you're looking for (though I'm not 100% convinced š š
Select Top 1000 tblAssets.AssetName,
a.*
From tblOperatingsystemHist As a
Inner Join tblAssets On tblAssets.AssetID = a.AssetID
Where a.Caption <> (Select Top 1 b.Caption From tblOperatingsystemHist As b
Where a.AssetID = b.AssetID And a.Trackercode > b.Trackercode Order By
b.Trackercode Desc) And a.Lastchanged > GetDate() - 30
Order By tblAssets.AssetName
ā12-07-2023 05:29 AM - edited ā12-07-2023 05:29 AM
If tblOperatingsystemHist is empty then you query is useless
ā12-06-2023 08:31 PM
Don't laugh, but usually OS in-place upgrades can be caught by the sheer number of KB removals at a single time in the change history.
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now