Hi All : I develop an WPF windows application and i want to run it from the cd , so is there any way to make autorun cd to install .NET framework then run the application.

link|improve this question

75% accept rate
feedback

2 Answers

You can use Visual Studio (if you have Professional or better) to create an installer that will ensure the appropriate framework version (and any other dependencies) is installed (and at the end optionally launch the application).

Then you can create an autorun file that will start this installer.

link|improve this answer
thanks for your replay , but the applicaton must run from cd and there is no install . – DEVMBM Mar 7 '11 at 8:20
feedback

You can also use ClickOnce. This is available in the Express versions of Visual Studio.

The prerequisites, like the .NET Framework, are installed by the ClickOnce bootstrapper.

In the properties section of your project under 'Publish->Options->Deployment' check the 'For CD installations, automatically start Setup when CD is inserted'. So you just need to copy the generated files onto your cd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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