N-able N-Central: Count of specific Windows 10 builds (Feature Update Level)
submitted
N
Nick Dechnik
Change the OsVersion to whichever Windows 10 build you'd like to get a count of. 10.0.19043 is build 21H1. Other build numbers are easily available on the web (https://en.wikipedia.org/wiki/Windows_10_version_history)
Devices[?Asset.OsVersion ==
10.0.19043
] | length(@)K
Kyle Morkel
Have a similar metric but looks for devices not at a specific versions and caters for multiple.To see if devices are in n-1 build versions.Devices[?Asset.OsPublisher ==
Microsoft Corporation
&&(contains(Deviceclass, Workstation
) || contains(Deviceclass, Laptop
))&&contains(Asset.OsReportedos,10
) &&Asset.OsVersion] |[?!(contains(Asset.OsVersion,10.0.19042
) || contains(Asset.OsVersion,10.0.19043
) )]|length(@)