vote up 6 vote down star
1

What are the pluses and minuses to using the vcredist.exe versus the msm files to install the Visual C++ 8.0 runtime libraries?

flag

51% accept rate

4 Answers

vote up 2 vote down

Merge Modules can not be updated (unless they solved that in Windows Installer) once they are installed, so my advice would be to stick with vcredist.exe.

link|flag
1  
We came to this conclusion as well -- we wanted to bundle SQL Server Express with our installer, but choosing merge modules would apparently mean that service packs could not be installed by the MS-provided service pack installer, but rather that we would have to build our own upgrade for each SP. Seemed like a bad fit for our situation. – Kim Gräsman Jul 28 at 7:42
vote up 1 vote down

To point out the obvious, Merge Modules are not really a good solution if you aren't going to use an MSI installer. Vcredist is absurdly simple to use regardless of the install process you are using.

link|flag
vote up 0 vote down

MSM will give you a better streamline experience then vcredist, it will integrate with the progress bar and will rollback on error (or cancel).
From the developer side you will benefit by seeing the msm log in the main setup log file and it will execute its actions side by side with the setup action (with vcredist you will need to sequence it yourself).

Because of all of the above reasons I usually choose to use the msm (and its more or less one Wix liner to use it).

link|flag
I don't consider it of high importance to allow the user to uninstall or otherwise rollback an install of the VC++ runtime libraries. – Brian Jul 27 at 20:16
vote up 0 vote down

Have you considered statically linking instead? Then you don't have a redistribution problem.

link|flag

Your Answer

Get an OpenID
or

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