URGENT: need help installing framework!

G

Guest

i have a c# app that needs to somehow detect if the .NET framework is
installed or not and if it isnt then do a silent install. My program is very
small and i would like it to remain on a cd and not have to use an installer.
The target environment is an unknown and i want my .exe to work as seamlessly
as possible whether or not the Framework is previously installed.
 
C

Chris Dunaway

A C# app requires the .Net framework to be installed therefore, if it
is not installed, the C# app cannot even start so it cannot detect the
..Net framework.

There is a product that has been mentioned in these groups called
"Thinstall" that somehow links in all the necessary .Net .dlls directly
into the app so you can run it without the .Net framework being
installed.

It seems to be a nice program, but, unless you work for a big company,
they don't make it easy for you to even get a demo. Their attitude is
basically, "If you're not a big company, we don't want to waste our
time with you".

In any case, do a search on Google or on these forums and you should
find the links to their site and can decide for yourself if it meets
your needs. It is expensive though ($4000).

Good Luck!
 
F

Fredrik Wahlgren

Dan Vasquez said:
i have a c# app that needs to somehow detect if the .NET framework is
installed or not and if it isnt then do a silent install. My program is very
small and i would like it to remain on a cd and not have to use an installer.
The target environment is an unknown and i want my .exe to work as seamlessly
as possible whether or not the Framework is previously installed.

I think this article will help
http://www.codeproject.com/managedcpp/dotnetsetup.asp

/Fredrik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top