Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free install wizard software [closed]

Is there something like InstallShield that I can use for free?

like image 999
UnkwnTech Avatar asked Sep 26 '08 03:09

UnkwnTech


People also ask

Where is the installer wizard?

Press windows key + R and type "services. msc" in the run box and press enter. b. In services windows check for windows installer status.

How do I open installation wizard?

From the Run command on the Windows Start menu, type DCPROMO and then click OK. 2. A welcome screen will appear that identifies the program as the Active Directory Installation Wizard. Click Next to continue.

Is there a free version of Advanced Installer?

Free Download This is a unified package containing the complete Advanced Installer application, which includes Freeware, Professional, Enterprise and Architect features.


2 Answers

WiX

  • Very powerful and flexible.
  • Can produce MSI packages (Microsoft deployment format of choice)
  • Almost no documentation
  • Very steep learning curve.
  • XML-based.
  • Recommended for very complex installators.

Inno Setup

  • Cannot produce MSI packages.
  • Its scripting part looks like INI files structure.
  • Uses Pascal Script based language for extra flexibility.

NSIS

  • Cannot produce MSI packages.
  • Fully scripted, very powerful but at cost of high learning curve.
  • Recommened if WiX is too much and Inno Setup not enough.

AdvancedInstaller

  • Basic version is free.
  • Can produce MSI packages.
  • Very good user-interface, almost no learning curve to get things done.
  • XML-based (but schema is not very user-friendly, doesn't really matter as you would use GUI editor anyway)
  • The best option if you have only basic installer requirements and don't have time to learn something new.

IzPack

  • Cross-platform
  • Maven integration
  • Customizable actions
  • Well documented
  • Opensource
like image 132
11 revs, 3 users 89% Avatar answered Oct 01 '22 10:10

11 revs, 3 users 89%


I have been using Inno Setup for several years now. It's mature enough that it has a lot of plug-ins. I've found that the forums/newsgroups are very good at answering all the questions I've had so far.

like image 22
Hector Sosa Jr Avatar answered Oct 01 '22 11:10

Hector Sosa Jr