Archive: Checking if Visual C++ 2005 is installed


Checking if Visual C++ 2005 is installed
Hello everybody,

I working on an installer that needs to check if Microsoft Visual C++ is installed. I have the setup file for Microsoft Visual C++ 2005 SP1 Redistributable Package, and adding it to my installer shouldn't be a problem. I just need to check if it is installed already. Does anybody know a registry key or something that I can check to see if it is installed?

Thanks


Install it on your test box, look in Add/Remove Programs and see if it shows up. If it shows up, it created a registry key in HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\... You can find it there and select a key (or value) to let your installer decide if the redistributables need to be added.

Don


Thanks for the idea Don, got it figured out now.