Link to home
Start Free TrialLog in
Avatar of Drachs
Drachs

asked on

What's the best way to redistribute vcredist_x86.exe in my wix installer?

I have a wix installer that installs a visual C application via MSI.   On a clean install of vista I get some side by side errors in the event log and my executable service won't start.   Installing vcredist_x86.exe solves this problem but leaves me with the question of how to properly redistribute the contents of vcredist_x86.exe.

Do I use merge modules?  Do I try and use a custom application to launch the file?  What's best practice for this?  I'd assume I'd find clear instructions some where since it must be a very common case but so far I'm still stumped.
Avatar of UdiRaz
UdiRaz

A simple solution I'm using is to always install following DLLs on the same folder of your exe:
Microsoft.VC80.CRT.manifest
Microsoft.VC80.MFC.manifest
msvcp71.dll
msvcp80.dll
msvcr71.dll
msvcr80.dll
Avatar of Drachs

ASKER

Is that what everybody is doing?  I was looking for a best practice, I'm surprised there is no guidance on this.
ASKER CERTIFIED SOLUTION
Avatar of bharath_r
bharath_r
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial