vote up 1 vote down star

Hi,

I've build an app in VS2008 and built an exe file.

when I copy the exe file to another computer it doesn't work.

I get the message: This application has failed to start because the application configuration is incorrect.

can someone please write the simple steps needed for this to be solved?

thanks.

flag

55% accept rate
perhaps the correct version of the .NET framework is not installed on the remote computer? – Mitch Wheat Sep 23 at 11:44
1  
To clarify: is this a .NET app.? – Mitch Wheat Sep 23 at 11:46
yes. a console application written in c++. – Oded Sep 23 at 12:04

2 Answers

vote up 2 vote down check

You need to install the VS2008 runtime redistributable.

VS2008

VS2008 SP1

The version of the runtime needs to match the version of VS that compiled the program.

link|flag
Did it. But is still doesn't work... – Oded Sep 23 at 11:59
In that case you have further dependencies that need to be copied too. What other libraries are you linking against? – Stu Mackellar Sep 23 at 12:09
You can use Dependency Walker to verify what dependencies are missing - dependencywalker.com – Stu Mackellar Sep 23 at 12:10
for the sake of the example, the app only prints "hello", so what other libraries are linked? – Oded Sep 23 at 12:11
It depends on the project settings. A default console project will only have dependencies on the runtime, in which case installing the correct runtime version - as linked - above is all that's required. Are you sure you've installed the correct runtime version? Are you using VS2008 RTM or VS2008 SP1? – Stu Mackellar Sep 23 at 12:20
show 2 more comments
vote up 0 vote down

Similarly, any other DLLs or libraries that this EXE needs will need copying across if they are not present on the target system. This message appears on Vista/7 machines if required libraries are missing or corrupt.

link|flag

Your Answer

Get an OpenID
or

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