views:

106

answers:

3

Exact duplicate: What is the best choice for building Windows installers
Exact duplicate: Best Windows installation file creator

I have a customer who is new to generating VB.NET programs that run Watcom FORTRAN programs. (Yes FORTRAN is alive in Numerical Control Programming) He is attempting to install the program on another computer that doesn't necessarily have the libraries.
Is there a good tutorial for .NET on generating MSI files?
He needs to install both and the necessary extras through a simple installation. (preferably without a sub-installation)

A: 

Im gonna risk suggestion making a installer with NSIS, it does not make MSI files but does generate installers and has a good community and great examples so its a good start position.

This is only a good solution if your after a installer, and not spesficly a msi installer.

EKS
+2  A: 

Try Wix... Definitelly the most useful in my eyes.

Nestor
Wix has saved me endless hours over the past few years and is pretty universally used.
Jeff Wilcox
A: 

Visual Studio supports several types of deployment projects. The express versions of Visual Studio also have some support, but it was very limited when I looked into it.

Don Kirkby