Deployment of VC2008 apps without installing anything
If you create a default CRT/MFC application with VS2008, this application will not run on other computers. You application will complain with
“This application has failed to start because the application configuration is incorrect”.
The problem is that by default VC2008 uses the DLL-version of the CRT/MFC. These DLLs are not pre-installed on any OS.
To overcome this problem, you have tree options:
- Statically link to the CRT/MFC
- Use vcredist_x86.exe / vcredist_x64.exe to install the DLLs in the system
- Deploy the CRT/MFC DLLs with your application (in the same directory)
In the following I will explain the last option. Especially in conjunction with VS2008 service pack 1 (SP1). Because this leads to a little bit more compications in ApppLocal deployment.
In general, it is very easy to deploy your application with the needed CRT/MFC DLLs.
Just copy the contents of the directory
- C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT
- C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.MFC
into the same directory as your application. Then you should have the following files in your app-folder:
Microsoft.VC90.CRT.manifest msvcr90.dll msvcp90.dll msvcm90.dll Microsoft.VC90.MFC.manifest mfc90.dll mfc90u.dll mfcm90.dll mfcm90u.dll
Then your application works on an other computer!
BUT: This does not work, if you installed VS2008-SP1
The problem with VS2008 SP1 is: It overwrites all files in the “VC\redist” directory with the new version. This is not really bad. The problem is: It has a newer version number inside the manifest files. But if you compile your application with VS2008-SP1 it write the RTM-version into the application manifest! Now the version number in your application manifest does not match the version in the “new” CRT/MFC manifest. Therefore it will refuse to load these DLLs and your application cannot start.
The simplest way to overcome this problem is by changing the “Microsoft.VC90.CRT.manifest” and “Microsoft.VC90.MFC.manifest” files. Replace the version attribute in both Microfot.*.manifest files from “9.0.30729.1″ (or whatever version/SP you have) to the version number in your applications-manifest (which is normally “9.0.21022.8″ (RTM)).
Old:
version="9.0.30729.1"
New:
version="9.0.21022.8"
Then your application will work on an OS without installing anything.
Alternatively, you can change your applications manifest, so that it uses the new version number. This can easily done by defining
#define _BIND_TO_CURRENT_VCLIBS_VERSION 1in stdafx.h (at the top) or in your project settings. This will embed the actual CRT/MFC-version into your applications manifest (works starting with VS2008-SP1).
Also, if you use new features from the MFC-feature-pack, you should always define this!
Just a small note: You should be aware, that this “AppLocal” installation is not really “AppLocal”… it is only AppLocal, if the vcredist_*.exe was not installed. If the vcredist_*.exe is installed, then the DLLs from the WinSxS directory will be used. If you want to prevent this, you can do a really AppLocal deployment.
A small addition: If you write .NET-apps (/clr) you still must install the .NET Framework redistributable.
But the goood news is: Starting with VC2010, the manifest (WinSxS) is gone ![]()
June 2nd, 2009 at 16:59
Hi.. Thanks for the information.. Currently I have the same problem, but I use VC 2005. Is that same steps?
June 2nd, 2009 at 17:00
Yes. There are the same steps… expect the version numbers are different; you need to look at your applications-manifest to lookup the correct version number.
August 6th, 2009 at 15:04
Would it be possible to link to the VC80 libraries within VC2008 ?
We have a lot of systems around with the 2005 redist already installed. We would like to develop using VC2008 but when we update our software we don’t like to install a lot of new dependencies.
Thx
August 6th, 2009 at 15:13
No, this is not possible.
The easiest way is to use static linking:
http://blog.kalmbach-software.de/2008/03/03/screencast-statically-link-to-the-c-runtime-to-prevent-vcredist-and-overcome-application-configuration-problems/
August 18th, 2009 at 16:56
I have updated my dlls and manifest files to the new version, 9.0.30729.4148 and my exe won’t run. I have opened my .exe file and it is looking for old version (9.0.30729.1). I found the ***.exe.intermediate.manifest in the Release dir. It says old version. I can’t figure out what creates ***.exe.intermediate.manifest since it is created during the build.
August 19th, 2009 at 14:11
Figured it out…It’s a long story. If anyone wants to hear it, let me know.
August 21st, 2009 at 12:28
Hello Jochen,
Thanks for the useful article. The described technique work also fine for deploying of debug versions, by working with corresponding debug folders and manifest files:
(Microsoft.VC90.DebugCRT, Microsoft.VC90.DebugCRT.manifest, etc.)
Currently I work on a VS2008 solution that contain 4 executables and 18 dlls, and deploying debugs is a practical (for Testers, PMs, etc. purposes).
And further, even the Common Control Dll (comctl32.dll) can be deployed locally, skipping the WinSxS. This can be done with the following steps:
1. Create a folder “Microsoft.Windows.Common-Controls” in deployment exe folder, for example
MyApp\exe\Microsoft.Windows.Common-Controls
2. copy comctl32.dll file from C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a folder
into MyApp/exe/Microsoft.Windows.Common-Controls folder
3. copy x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a.Manifest file from C:\WINDOWS\WinSxS\Manifests folder
into MyApp/exe/Microsoft.Windows.Common-Controls folder
4. rename x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a.Manifest to Microsoft.Windows.Common-Controls.Manifest
5. remove publicKeyToken from this new manifest (Microsoft.Windows.Common-Controls.Manifest)
6. in all dlls and exes manifests remove publicKeyToken from the section described “Microsoft.Windows.Common-Controls”.
Now comctl32.dll is deployed locally, and WinSxS is bypassed.
Best regards,
Svetoslav Kyuchukov
Eurorisksystems Ltd.
Varna, BG
September 11th, 2009 at 02:26
Thanks for the _BIND_TO_CURRENT_VCLIBS_VERSION tip!
October 13th, 2009 at 19:00
Thank you very much for the tip about manually correcting the version in the manifest files. I never would have guessed that they’d ship a bogus manifest with the DLLs.
Setting version=”9.0.21022.8″ worked perfectly for me.
October 23rd, 2009 at 22:28
You are a star, sir. This page has been really helpful. Thankyou.
November 2nd, 2009 at 12:58
Fantastic. Thanks.
_BIND_TO_CURRENT_VCLIBS_VERSION tip worked for me.
February 18th, 2010 at 16:36
[…] http://blog.kalmbach-software.de/2009/05/27/deployment-of-vc2008-apps-without-installing-anything/ […]