What's the best way in c# to determine is a given QFE/patch has been installed?
How do I check that a Windows QFE/patch has been installed from c#?
4.1k Views Asked by Ari Pernick At
2
There are 2 best solutions below
0

The most reliable way is to determine which files are impacted by the QFE and use System.Diagnostics.FileVersionInfo.GetVersionInfo(path)
on each file and compare the version numbers.
edit: I think there's a way to check the uninstall information in the registry as well, but if the QFE ever becomes part of a Service Pack or rollup package that might report false negatives
Use WMI and inspect the Win32_QuickFixEngineering enumeration.
From TechNet:
The HotFixID is what you want to examine.
Here's the output on my system: