I expect to find out through BigFix analyses whether those clients have installed KB5043050, but it was unsuccessful, and the result shows as “undefined.”
Here is the script:
if (exists (id of it) whose (it = “KB5043050”) of installed hotfixes) then “Installed” else “Not Installed”
I’ve never seen the installed hotfixes inspector, but I could be mistaken. I confirmed the BigFix Dev page for it, but I couldn’t locate any listings based on it.
However, I am utilizing the following WMI-based client relevance to determine whether a given KB is installed.
not exists (string values of properties "HotFixID" of it) whose(it starts with "KB5043050") of select objects "HotFixID from Win32_QuickFixEngineering" of wmis
``
Right, “installed hotfixes” is not an inspector. It looks like the kind of thing ChatGPT is making up that looks similar to relevance but uses all sorts of inspectors that don’t exist.
Not sure whether the original poster came up with this from some other source, or from ChatGPT, or is an AI itself, but we’ll let them reply back and see if we can Turing-test our way out of this
if exists (string value of properties "HotFixID" of it) whose(it = "KB5043050") of select objects "HotFixID from Win32_QuickFixEngineering" of wmis then "Installed" else "Not Installed"