Creating a setup that automatically installs .NET

O

ofiras

Hi,
I have made a program in C#, but most of my clients doesn't have .NET
installed on their computer. I would like to make it easy for them to
install my program so I want to create an installation that will
automatically check if .NET is installed, and if not, it will
install .NET (also automatically), and only then install my program.
How can I do it?
Please help,
Ofir.
 
W

Wilson, Phil

That's what Setup&Deployment Projects do, as well as most 3rd party tools
that build MSI files and supply a bootstrap to install prerequisites then
launch the MSI file install. ClickOnce might be an option too.
 
G

Gregory A. Beamer

ofiras said:
Hi,
I have made a program in C#, but most of my clients doesn't have .NET
installed on their computer. I would like to make it easy for them to
install my program so I want to create an installation that will
automatically check if .NET is installed, and if not, it will
install .NET (also automatically), and only then install my program.
How can I do it?
Please help,

Try this:
http://msdn.microsoft.com/en-us/library/ms994395.aspx

Bootstrapping is useful, as you only install when needed.

--
Peace and Grace,
Greg

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

************************************************
| Think outside the box! |
************************************************
 

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