vote up 3 vote down star
2

This is the error Dependency Walker gives me on an executable that I am building with VC++ 2005 Express Edition. When trying to run the .exe, I get:

This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.

(I am new to the manifest/SxS/etc. way of doing things post VC++ 2003.)

EDIT: I am running on the same machine I am building the .exe with. In Event Viewer, I have the unhelpful:

Faulting application blah.exe, version 0.0.0.0, faulting module blah.exe, version 0.0.0.0, fault address 0x004239b0.
flag

36% accept rate
What Windows version is this? – EFraim Aug 27 at 9:17
Windows XP SP3. – Jim Buck Aug 27 at 10:25

4 Answers

vote up 1 vote down

Run Event Viewer: it'll have more information.

Probably you've attempted to run your program on a machine that doesn't have the VC redistributables installed, or you're attempting to run a debug build on a machine that doesn't have Visual Studio installed (the debug libraries aren't redistributable).

link|flag
I am building and running on the same machine with VC++ 2005 Express Edition installed. Could the Express Edition be the issue? – Jim Buck Oct 31 '08 at 16:30
(I mean, it would be odd to not be able to run a .exe on the very machine that built it. It would mean that the Express Edition is broken.) – Jim Buck Oct 31 '08 at 16:31
Did you look in Event Viewer? – Roger Lipscombe Oct 31 '08 at 16:36
Yep, I just updated my OP with the results. Not very helpful info from EV, though. – Jim Buck Oct 31 '08 at 16:37
vote up 1 vote down

I've had this problem. The solution has two steps:
1. Compile your program in "Release" mode instead of "Debug" mode (there's usually a combo-box in the toolbar)
2. Download from Microsoft their Redistributable Package of runtime components. Make sure to download the x86 edition for 32-bit computers and the x64 edition for 64-bit computers/OSes. Install this package on the target computer, and your application should run fine

P.S. This is a SxS thing
P.P.S. Alternatively, use a different compiler (like GCC, for example with Dev-Cpp) to compile your program's source, and your headaches will disappear.

link|flag
vote up 1 vote down

Open the properties sheet for your project, go to the Configuration Properties -> C/C++ -> Code Generation page, and change the Runtime Library selection to /MT or /MTd so that your project does not use the DLL runtime libraries.

The C/C++ DLL runtimes used by VS2003 and up are not automatically distributed with the latest version of the OS and are a real pain to install and get working without this kind of problem. statically link the c-runtime and just avoid the total mess that is manifests and version specific runtime dlls.

link|flag
amen to the mess that is manifests. – gbjbaanb Sep 28 at 14:09
vote up 1 vote down

Sorry to bump an old question, but I was able to get around this exact issue and thought I'd post a solution in case someone else needs it...

Even after installing Microsoft's redistributable DLLs I was getting this error, the fix was to copy the

C:\Program Files\Microsoft Visual Studio 8\VC\redist\x86\Microsoft.VC80.CRT

folder into the application's directory on the target PC. After that, no more problems.

BTW, the DLL that was giving me issues was a 3rd-party DLL that had never had problems before on over 100 other computers... go figure.

link|flag

Your Answer

Get an OpenID
or

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