Reputation: 59
we have developed a application on 32 bit windows using vc++ express 8 edition... Now, while executing this application on windows 64 bit os, we are getting the following error"CreateProcess error=14001, The application has failed to start because its side-by-side confi guration is incorrect. Please see the application event log or use the command-l ine sxstrace.exe tool for more detail"
now, can you pls help in fixing this above said problem?
I followed some of the links from stackoverflow and couldn't fix the problem.
Upvotes: 1
Views: 304
Reputation: 24867
As Simon pointed out, you need to make sure the runtime for your compiler is installed, or you could link your EXE statically.
Upvotes: 0