Download Windows Updates Using C #

Is there a way to download Windows software updates using C #. (Then we can handle it)

+7
source share
1 answer

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

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

+5
source

All Articles