Forum Discussion
OrionWithrow
Apr 19, 2018Brass Contributor
Windows Update progress
Maybe I am going about this the wrong way, hoping to get some help. What we are trying to accomplish: Trying to create a time to track the deployment progress of each Windows Update release. So f...
Ketan Ghelani
Apr 22, 2018Former Employee
You may have a typo in your query if you are looking for version prior to 15063.966 as you have "994" in your query
......."15063.909", "15063.936", "15063.994")
Also you can use the parse_version function i.e
an example
WaaSDeploymentStatus
| extend v = parse_version(TargetBuild)
| where parse_version(TargetBuild) < parse_version("15063.966") and parse_version(TargetBuild) > parse_version("15063")
| project v, TargetBuild