I’m developing a sample code to get information about the Windows Updates Monitoring.
I bumped into Windows Update Agent APIs. link: http://msdn.microsoft.com/en-us/library/windows/desktop/aa387099(v=vs.85).aspx
But I’m not able to find any APIs for win32. I find only C#/.NET Interfaces.
Are there any corresponding win32 APIs?
Specifically I want to find out the “release date” of a windows update/patch.
Look forward to any suggestions and guidance.
- Srivathsa
The WUA API includes a set of COM interfaces which can be used from C++ Apps, so try these
IUpdateSearcher,IUpdateSessionandIUpdate.Check this sample c++ application which retrieve the updates and the date of release.