Pls help reg patches
-
Hi, I am able to get all the computers connected to a network. Now my next step is to track the list of patches in these computers. For this to achieve -pls advise me how to proceed. Pls correct me if I am going wrong. 1.Detect type of OS on the target machine . 2.List the patches present on the target machine. 3.List out the dependancies of each patch. For that-Do I need to know the list of softwares on the target machine? -Do I need to know the list of service packages on the target machine? -How a patch is detected on the target machine? -How a patch is applicable on the target machine? Regards
-
Hi, I am able to get all the computers connected to a network. Now my next step is to track the list of patches in these computers. For this to achieve -pls advise me how to proceed. Pls correct me if I am going wrong. 1.Detect type of OS on the target machine . 2.List the patches present on the target machine. 3.List out the dependancies of each patch. For that-Do I need to know the list of softwares on the target machine? -Do I need to know the list of service packages on the target machine? -How a patch is detected on the target machine? -How a patch is applicable on the target machine? Regards
ykutanoor wrote: 1.Detect type of OS on the target machine .
GetVersionEx()
should help here. ykutanoor wrote: 2.List the patches present on the target machine. Do you mean like the ones listed here: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows 2000\SP5
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
-
ykutanoor wrote: 1.Detect type of OS on the target machine .
GetVersionEx()
should help here. ykutanoor wrote: 2.List the patches present on the target machine. Do you mean like the ones listed here: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows 2000\SP5
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
In order to list the patches present on the system - I have to go through this path. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows 2000\SP5 But in my machine HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\ I am able to see 3 entries- Data Access Windows 2000 Windows MEDIA pLAYER And under Windows 2000 -I am seeing 2 entries SP4 and SP5. And in the path - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall I am able to get a list of hot fixes. What are hot fixes and are these patched? Regards Ydagiri cAN U PLS HELP ME WITH THIS ONE? I am doing a multi threaded application that involves exchange of data. ONE UI THREAD AND 3 WORKER THREADS.PLS LET ME HOW TO EXCHANGE THE DATA BETWEEN THESE 3 WORKER THREADS. FOR EX:THE FIRST THREAD WILL GIVE THE SECOND THREAD THE 2 NUMBERS AS ARGUEMENTS.the second thread should return the first thread the sum. Pls help
-
In order to list the patches present on the system - I have to go through this path. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows 2000\SP5 But in my machine HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\ I am able to see 3 entries- Data Access Windows 2000 Windows MEDIA pLAYER And under Windows 2000 -I am seeing 2 entries SP4 and SP5. And in the path - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall I am able to get a list of hot fixes. What are hot fixes and are these patched? Regards Ydagiri cAN U PLS HELP ME WITH THIS ONE? I am doing a multi threaded application that involves exchange of data. ONE UI THREAD AND 3 WORKER THREADS.PLS LET ME HOW TO EXCHANGE THE DATA BETWEEN THESE 3 WORKER THREADS. FOR EX:THE FIRST THREAD WILL GIVE THE SECOND THREAD THE 2 NUMBERS AS ARGUEMENTS.the second thread should return the first thread the sum. Pls help
ykutanoor wrote: I have to go through this path. I was simply giving you that registry key as an example. It was not meant to be applicable on all systems. ykutanoor wrote: And under Windows 2000 -I am seeing 2 entries SP4 and SP5. Ok, and? ykutanoor wrote: What are hot fixes and are these patched? Updates that are sent out in between two normally scheduled updates (e.g., critical issue or vulnerability found).
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen