Is there any way to Download updates of windows programmatic using c#. (Then we can manage it)

link|improve this question

It is not a programming question! You should ask this in other stackexchange sites or other forums. – Mahdi Oct 31 '11 at 19:47
4  
@Mahdi, looks like a programming question to me. They're asking how to write software that downloads (and, presumably) installs updates. – Harry Johnston Oct 31 '11 at 19:50
maybe with WMI. or Powershell? – GlennFerrieLive Oct 31 '11 at 19:50
@Mahdi:I want to do it programmatic.I know I can click on Windows Update!!! but I want to do it and manage it – ahmadali shafiee Oct 31 '11 at 19:50
2  
The Windows Update API is documented at msdn.microsoft.com/en-us/library/aa387099%28v=VS.85%29.aspx – Harry Johnston Oct 31 '11 at 19:52
show 9 more comments
feedback

1 Answer

up vote 4 down vote accepted

The Windows Update API is documented here. A quick stackoverflow search has convinced me that you can indeed use COM from C# so this should solve your problem.

I also have some sample code, not in C#, but it may give you a head start in understanding how the interfaces can be used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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