CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 10 of 10
  1. #1
    Join Date
    Feb 2004
    Location
    Boston, MA
    Posts
    62

    InstallShield alternative?

    Can anyone recommend a good alternative to InstallShield (specifically, something less expensive)? I've searched sourceforge.net but didn't come up with anything, wondering if anyone out there has any suggestions.

    I regularly work with VB6, MSVC++ 6, and C#, and would like to find a good installer that can cover them all.

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: InstallShield alternative?

    Take a look at the following. One of these might work for you.

    http://www.google.com/search?hl=en&q...=Google+Search
    Wise Installation Studio
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  3. #3
    Join Date
    May 2005
    Location
    Estonia
    Posts
    235

    Re: InstallShield alternative?

    Innosetup is pretty good.
    I have used it alot.

    http://www.jrsoftware.org/isinfo.php
    Rate my post if i it was useful!

  4. #4
    Join Date
    Apr 2004
    Location
    England, Europe
    Posts
    2,492

    Thumbs up Re: InstallShield alternative?

    Quote Originally Posted by BytePtr
    Innosetup is pretty good.
    I have used it alot.

    http://www.jrsoftware.org/isinfo.php
    Very very good!
    My hobby projects:
    www.rclsoftware.org.uk

  5. #5
    Join Date
    Dec 2003
    Location
    Middletown, DE
    Posts
    67

    Re: InstallShield alternative?

    I recommend looking at NSIS. I've used it for one of my projects. It's open source and pretty straightforward with examples and extensible for custom install code.

  6. #6
    Join Date
    Feb 2004
    Location
    Boston, MA
    Posts
    62

    Re: InstallShield alternative?

    Thanks to you all for the recommendations. The most votes here (and elsewhere on the Web) seem to be for Inno Setup and NSIS, I'll be taking a look at them both.

    -- Is there any one thing that sets Inno and NSIS apart from each other, any reason to use one over the other?

    -- Quick question regarding NSIS... it looks like it gives you a choice of GUI to develop scripts, is the Eclipse editor the best to use?

    Thanks again

  7. #7
    Join Date
    Apr 2004
    Location
    England, Europe
    Posts
    2,492

    Re: InstallShield alternative?

    In InnoSetup, simple things are easy to do yet there are many many advanced features which let you solve common tasks very elegently.

    Inno uses plain text INI style entries - things like 'put this exe there' and 'create this reg-entry' are very simple to add/edit. Each action can be conditional on user choices and/or the target environment.

    For more complex actions there's support for running Pascal script functions, which (amoungst other things) let you create and use COM automation objects such as MSXML DOM objects.
    My hobby projects:
    www.rclsoftware.org.uk

  8. #8
    Join Date
    Mar 2001
    Posts
    2,529

    Re: InstallShield alternative?

    ahoodin
    To keep the plot moving, that's why.

  9. #9
    Join Date
    Sep 2011
    Posts
    2

    Re: InstallShield alternative?

    This thread is a bit old, but I thought my finding may help others.

    I was searching for a cheaper or free alternative to InstallShield. I tried WiX but found it too complicated. In the end I found Advanced Installer. It's mostly oriented towards usability, so there are a lot of wizards and built-in stuff.

    So if you're looking for an easy solution, you can try it. It even has a free version.

  10. #10
    Join Date
    Mar 2001
    Posts
    2,529

    Re: InstallShield alternative?

    Quote Originally Posted by Zaccheus View Post
    In InnoSetup, simple things are easy to do yet there are many many advanced features which let you solve common tasks very elegently.

    Inno uses plain text INI style entries
    Yes I have used InnoSetup to make great installation programs! I also find that InnoSetup Scripts are easily debugged and very flexible.
    ahoodin
    To keep the plot moving, that's why.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured