Hello All,
I am looking for some assistance with a WQL query to fetch the install date of hot fixes on a few servers on our network. The default asset inventory minimum polling frequency is too high to be helpful. Unfortunately remote powershell is also unavailable on these devices. I have been testing using the wbemtest utility from the our polling engine. The data I am looking for is in the Win32_QuickFixEngineering class. I am looking specifically to pull HotFixID and InstalledOn properties. I have tried the following query:
SELECT * FROM Win32_QuickFixEngineering
This returns the HotFixID and ServicePackInEffect (which is null). If I double click on these objects I do see the InstalledOn property, but I cant seem to pull this via WQL query. I have also tried the following:
SELECT InstalledOn, HotFixID FROM Win32_QuickFixEngineering where HotFixID LIKE '%KB%'
This returns the following output "Win32_QuickFixEngineering=<no key>". Again, if I double click on the object I do see relevant properties.
My end goal here is to fetch this data using the WMI Monitor component. Thanks for taking the time to look.