Good Morning All,
I am trying to create a collection for all machines missing a single patch. MS07-042. This patch has multiple KB numbers.
I noticed a couple of odd occurances.
1) Console query builder does not expose the Updates classes.
2) Console query builder does expose all the ITMU classes. I am not sure if these are populated with the WSUS information gathered by the WUA.
I did create the following query
select *
from SMS_R_System inner join SMS_UpdateComplianceStatus on SMS_UpdateComplianceStatus.MachineID = SMS_R_System.ResourceId
inner join SMS_Softwareupdate on SMS_Softwareupdate.CI_ID = SMS_UpdateComplianceStatus.CI_ID
where SMS_Softwareupdate.BulletinID = "MS07-042"
However, I am unable to locate any documentation on what the Status Fields indicate in SMS_UpdateComplianceStatus.
My Questions
1) Is there an easier way to do this?
2) Is there any documentation on what the fields mean in SQL?
I look forward to blogging about this as soon as I am sure of an answer.
Best
Shaun Cassells