.NET Framework Bookmark and Share   
 index > .NET Base Class Library > how to do patchmanage using c#
 

how to do patchmanage using c#

i am doing wmi application in c#...
i have to do patch management i don't know how to find the missing patches i am retrieving the installed patches using win32_quickfixeng.. class but i dont know to how to find the missing patches on the system

pls help me
jamespetson
Through WMI one can only retrieve a list of all the installed patches on a machine, WMI cannot be used to retrieve the patches which need to be installed but are not. As suggested already, it's a better solution to have a webservice which gives a list of all the patches to be installed which can be filtered based on the patches that have already been installed obtained from the win32_quickfixengineering class exposed by WMI to get a list of patches which have to be installed.
rochak.mittal

Hi,

How do you judge whether a patch is missing or not on the system. What is the criteria?

If you mean the patches from Windows Update, you can consider using WUA APIs, instead of WMI.

Using WUA to Scan for Updates Offline

http://msdn2.microsoft.com/en-us/library/aa387290.aspx

Martin Xie - MSFT
In Wmi we have win32_quickfixeng class we can find installed fixes in the both local and remote system using this class. if we can get all the patches form web service or some else....
we can find out missing patches i think ... so
is there any other way to do this
jamespetson
hai all
is there any web services for finding the Microsoft new patches
how to find the new patch form that has released by the Microsoft.
or if any other method i have to fallow
help me
jamespetson

Hi,

Iam also figuring out a way to get the new patches from Microsoft.

Please share with me if you had any luck finding out how to do

the same.

jeedee
Through WMI one can only retrieve a list of all the installed patches on a machine, WMI cannot be used to retrieve the patches which need to be installed but are not. As suggested already, it's a better solution to have a webservice which gives a list of all the patches to be installed which can be filtered based on the patches that have already been installed obtained from the win32_quickfixengineering class exposed by WMI to get a list of patches which have to be installed.
rochak.mittal

You can use google to search for other answers

Custom Search

More Threads

• How to monitor an I/O event from a separate process?
• "Safely Remove Hardware" from my program.
• System.Threading Monitor internals?
• upgrade and framework compatibilty ?
• CultureInfo changes itself
• Book about .NET internals ?
• GetProcessById()... how can i use it if i am not an admin
• Problem with casting a .NET form object to a vb6 object type.
• Process
• Locking and Asynchronous Component pattern