I have found a lot of programs to make an installation package for .net application but non of them meet my requirements.

I'm looking for a free application which is able to create installation and uninstallation package and is able to check if net framework and sql 2008 Redistributable is installed if not application should be able to install them first and then start application installation process

link|improve this question
Do you need them additional packages to be bundled with the installation or they should be downloaded from internet? – Shamim Hafiz Feb 13 '11 at 11:01
They should be downloaded from internet – fsdfsdf Feb 13 '11 at 11:19
1  
Soooo....what was wrong with Windows Installer? – Cody Gray Feb 13 '11 at 11:19
feedback

4 Answers

Take a look at Wix.

It is free, but the initial learning curve may be a little bit harder then other programms. The output of WiX is a *.msi package.

link|improve this answer
We have used Wix for years, it is very powerful, but as PetPaulsen suggests it has an initial learning curve. Once you're over that it can do virtually anything you want! – Colin Desmond Feb 13 '11 at 11:05
yep I saw it but it doesn't detect vs 2010 on my PC, if I run it manually unhandled exception window pops-up – fsdfsdf Feb 13 '11 at 11:11
feedback

I recommend Inno Setup - I compared it once with NSIS and found it more usable. It suports scripting, and you will find example scripts for installation of .NET and other redistributables through the search engine of your choice.

link|improve this answer
feedback

Did you try installer, that is shipped with visual studio? If it is very simple, try Wix. Aslo, consider NSIS.

link|improve this answer
feedback

Or Windows Installer?

If you have Visual Studio installed then you can simply create a setup project within your solution. If not, then download from the above link (or fine the appropriate version to download) and utilise the set creation application manually.

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.