I agree that enumerating through the registry key is the best way.
Note, however, that the key given, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
, will list all applications in a 32-bit Windows installation, and 64-bit applications in a Windows 64-bit installation.
In order to also see 32-bit applications installed on a Windows 64-bit installation, you would also need to enumeration the key @"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall"
.