0

i want to check a particular hotfix is installed or not for wmencoder in windows 2000.where do i look at the registry or is there someotherway to find it

i already looked into that, for xp entries are there ,but for windows 2000 nothing is there

is ther anyway for doing this

1 Answers1

1

Similar question (How do I get a list of installed updates and hotfixes)

Using WMI and Win32_QuickFixEngineering you can get all the hotfixes that are installed on the system.

const string query = "SELECT HotFixID FROM Win32_QuickFixEngineering";
var search = new ManagementObjectSearcher(query);
var collection = search.Get();

foreach (ManagementObject quickFix in collection)
    Console.WriteLine(quickFix["HotFixID"].ToString());
Community
  • 1
  • 1
Shay Erlichmen
  • 31,691
  • 7
  • 68
  • 87