vote up 0 vote down star

I have a program that I want to use as an autorun. I want it to be able to do three things. It needs to check to see if a specific program is installed, if it is not, present the user with the option to install it. Second, if the program is installed, present the user with the option of running it and uninstalling it, third, present the user the option to view a readme.

How can I get a program to check and see if another program is already installed? How can I launch an installer/uninstaller from another program?

Thanks.

P.S. I can modify the installer.

flag

2 Answers

vote up 1 vote down check

Assuming its your program and you're building the install, I'd just have your installer write to a registry key and then check that key in your autorun program.

To launch the installer from your autorun program just run the setup.exe, or use MSIEXEC for an MSI.

link|flag
That's just reinventing the wheel. Why not use an existing supported mechanism? – On Freund Feb 8 at 7:00
It's simpler, works for non-MSI installers and I wouldn't consider reading a registry key "unsupported" ;) – sascha Feb 8 at 21:26
vote up 0 vote down

Assuming your installation is Windows Installer based, everything you need is here.

link|flag
I have no idea how to use that to tell if a program is already installed or not. – Malfist Feb 6 at 19:07
You can use the MsiEnumProductsEx function and pass it the product code for the program you're interested in. – On Freund Feb 6 at 19:14
MsiQueryProductState also seems to does the trick – On Freund Feb 6 at 19:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.