views:

94

answers:

2

Hello.

Does anyone know what error message will be displayed

when someone tries to run an application developed using .NET

on a computer where .NET Framework is not installed? ex) Windows XP original.

will the error message tell you that .NET Framework is not installed? or will it not show any useful messages?

+3  A: 

Here you go.

When you create a .NET application executable (.exe) file, copy the file to a computer on which the .NET Framework is not installed, and then attempt to run the .exe file from that computer, you may receive the following error message (or messages):

Unable to Locate DLL - The Dynamic Link Library mscoree.dll could not be found in the specified path.

Mr Roys
This is only for .NET 1/ .NET 1.1
Ganesh R.
+3  A: 

I tried running a .NET 2 application on an Windows XP RTM Clone.

I got 2 different errors:

a. The application failed to start because the application configuration is incorrect. Reinstalling the application may fix the problem.

b. Application failed to initialize properly (Some error code)

This suggests that the error thrown is not specific enough to predict.

Ganesh R.
Yes and I recently got this message box: http://twitpic.com/1flafq Here, the client framework was installed, but the full was required, somehow...
Armin