Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use the Windows Update Agent API to search Update for Root Certificate (KB931125), but I have no idea to search specific Update from Catalog. Could you please advise me how to search a specific update based on the name(KB931125) by Windows Update Agent API?

Thanks.

share|improve this question

1 Answer

The IUpdateSearcher::Search method doesn't support searching based on the name, or at least not according to the documentation. You could search for the relevant update IDs (although these might change if the update is later re-released) or you could search for all updates of the appropriate type and then filter the results yourself.

share|improve this answer
I have searched all updates but, I have no idea why the KB931125(Update for Root Certificate) is not in the list. Do you have any idea about the Update for Root Certificate? – kha nguyen Oct 19 '12 at 13:45
Well, does the Windows Update control panel list it as a needed update? – Harry Johnston Oct 20 '12 at 5:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.