I think your problem is discussed here:
http://social.msdn.microso
Look at this, problem is explained there.
Peter
Main Topics
Browse All TopicsFor an application suite (exes + dlls) I have been using merge modules (msm) files embedded in an installation (wise for windows).
Until recently a typical manifest file would be:
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microso
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT' version='8.0.50727.762' processorArchitecture='x86
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.MFC' version='8.0.50727.762' processorArchitecture='x86
</dependentAssembly>
</dependency>
</assembly>
I have just rebuilt the files and recompiled the installation with a view to start testing today. The application refuses to start. Looking at the manifest it has changed to:
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microso
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT' version='8.0.50727.4053' processorArchitecture='x86
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.MFC' version='8.0.50727.4053' processorArchitecture='x86
</dependentAssembly>
</dependency>
</assembly>
ie. 8.0.50727.762 ---> 8.0.50727.4053
so it looks like a security update in Visual Studion 2005 has updated some files the app is dependant upon.
I have been trying to find the latest msm files on the msdn.com site without success.
eg.
Microsoft_VC80_CRT_x86.msm
Microsoft_VC80_MFC_x86.msm
Where can I download them (or a file containing the latest merge modules for VC++ 2005) ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I think your problem is discussed here:
http://social.msdn.microso
Look at this, problem is explained there.
Peter
Business Accounts
Answer for Membership
by: AndyAinscowPosted on 2009-08-13 at 23:39:23ID: 25095663
ps. Due to the dll's a static build is NOT an option, I do need to distribute the microsoft MFC and CRT dll's in the installation.