Choosing an installer product that is free and will download/install the .NET Framework

Posted by Coder7862396 on Stack Overflow See other posts from Stack Overflow or by Coder7862396
Published on 2010-06-02T22:38:08Z Indexed on 2010/06/02 22:54 UTC
Read the original article Hit count: 367

I'm currently using the Visual Studio Installer (Setup Project) in Visual Studio 2010 as the installer for MyProgram. It has some quirky bugs and is not very customizable so I would like to switch to another installer product. Here are my requirements:

  • Must be free (and licensed for commercial use)
  • Must install the Windows Installer 3.1 and .NET Framework 4.0 if the client doesn't have them
    • The installer will download them if they are not available
    • The code for detecting the .NET Framework and downloading it must be written by Microsoft (I do not want to have to update hard-coded URLs and registry keys in the future). I know that the Windows SDK includes a setup bootstrap that does this (C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper)
    • In the future, when .NET Framework 5 is released and MyProgram uses it, no installer code will need to be changed, the updated installer product should see that MyProgram now uses the .NET Framework version 5 and will install that

Here are my current choices:

Visual Studio Installer:

NSIS:

Inno Setup:

WiX:

  • Steep learning curve... not sure if I want to spend weeks learning it only to find out that it has the same uninstall problem as the Visual Studio Installer (because they both use MSI files)

InstallShield LE 2010:

  • Downloading it requires me to setup a fake email account to register just to download it. Then once it is installed it has to contact the company's servers and transmit some private information to them before I'm even allowed to try the free version. This is the most insidious form of DRM that there is and I will not accept it.

© Stack Overflow or respective owner

Related posts about deployment

Related posts about visual-studio-2010