Reading Registry Values (Resolved)
How would I create a loop to read through the subkeys of a registry key? For example, I want to know what all software has been installed on a computer. The key that contains this information is HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall. There are several subkeys under here that contain the information I need. How can I loop through the subkeys to obtain the information (DisplayName & DisplayVersion)?
-----------------------------
I found an example on MSDN.
Chris