Windows Installer Software
-
Not really a reply to your post but still OT (on topic.) This topic, of which installer to use, has come up a lot in the lounge. I trhink it would be useful for those "in the know" to write an article for CP so that people can be reffered to it when they ask this question. The article could have a breakdown of the pro's/con's of each so that anyone can choose the right one for their project. Fortunatley, for me, I do web-dev so I don't ever have to use Installer software, so my experience is limited. Just an idea :) regards, Paul Watson Bluegrass Cape Town, South Africa "The greatest thing you will ever learn is to love, and be loved in return" - Moulin Rouge Martin Marvinski wrote: Unfortunatly Deep Throat isn't my cup of tea Do you Sonork? I do! 100.9903 Stormfront
Another idea for a possible article is how to create a dll in C++ which can be called by the install engine. Ideas for functions defined in the dll could be copying registry keys which is useful when upgrading an application from a previous version or detecting if a specific application is in use.
-
We were using WISE for previous projects, but have since switched over to InstallShield Professional 6.3. We switched from WISE mainly because we had quite a few installation requirements which required us to create custom installation dialogs and required calling external custom dll functions which is a little easier to implement in InstallShield. Also, InstallShield seem to be more reliable than WISE. If you are into pain and suffering consider using the bleeding edge InstallShield Developer 7 version.
I'm surprised no one has mentioned Microsoft's installer. It was one of the top downloads for quite some time on MSDN. I've only looked at it briefly and haven't formed an opinion yet, but I was hoping to hear at least something about it. Does it really just suck, or has no one really used it much yet?
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
OK everyone - thanks for your replies. I'm going to look into Inno Setup and Indigo Rose immediately - I actually got a reply from Indigo Rose, so I will download and try their SetupFactory 6. Next in line for consideration will be Wise, and probably never would be InstallShield. The only thing that SetupFactory won't do would be WinCE, which we've only had a couple of uses for currently. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
-
I'm surprised no one has mentioned Microsoft's installer. It was one of the top downloads for quite some time on MSDN. I've only looked at it briefly and haven't formed an opinion yet, but I was hoping to hear at least something about it. Does it really just suck, or has no one really used it much yet?
-
My experience is that InstallShield sucks the most. I think I've seen Wise recommended in previous threads. Although I haven't used it.
Todd Smith
I know some people say that, but I can't help feeling that they are either prejudiced by the price or haven't taken the time to learn the environment's capabilities properly (and boy does it take time). I've been using ISD7 for the past five months or so now, regularly, at various degrees of complication, and once you know your way around and know what does what, it's like changing a nappy. You don't particularly like it, but you know the end result will be better for it. ________________ David Wulff http://www.davidwulff.co.uk "My grandfather once told me that there are two kinds of people: those who work and those who take the credit. He told me to try to be in the first group, there was less competition there" - Gandhi
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
I've been using Wise for many years and am happy with it. I upgraded to Wise InstallBuilder 8.1 last year and it is a big improvement, over what I was used to before. In particular the scrip Wizard gets the basics up and going very quickly. I did evaluate most of the well known installers back when I upgraded and in the end decided that Wise still best suited my needs. One thing it has which most of the others don't, is the ability to make conditionaly compiled versions of installation packages. ie. one with the works, another without some stuff (MSVC DLL's for example). Neville Franks, Author of ED for Windows. www.getsoft.com
-
I'm surprised no one has mentioned Microsoft's installer. It was one of the top downloads for quite some time on MSDN. I've only looked at it briefly and haven't formed an opinion yet, but I was hoping to hear at least something about it. Does it really just suck, or has no one really used it much yet?
The installer put out by Microsoft is very limited. If you setup requirements are simply copy files and thats it, then you should consider it. If you need to prompt the user for input (aside from the installation folder), then it may not help you much as you cannot create custom dialogs in it. Check out www.installsite.org for a comparison of the MSI (Windows Installer) authoring products available.
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
I use InnoSetup exclusively. It does almost everything that you might need, and if you need to add some custom functionality, you can download the InnoSetup Extensions (which you should do anyway), which amongst other things, grants you the ability to use Pascal scripting to modify behavior or to respond to different actions, and create your own custom wizard pages. I would also seriously suggest downloading ISTool, which is a GUI front end to InnoSetup, and supports the Extensions. All of this is, as before mentioned, free. Jamie Nordmeyer Portland, Oregon, USA
-
OK everyone - thanks for your replies. I'm going to look into Inno Setup and Indigo Rose immediately - I actually got a reply from Indigo Rose, so I will download and try their SetupFactory 6. Next in line for consideration will be Wise, and probably never would be InstallShield. The only thing that SetupFactory won't do would be WinCE, which we've only had a couple of uses for currently. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
Question: Is it a requirement for you to use a MSI (Windows Installer) based setup? If so, www.installsite.org offers a good product comparison of Wise, Installshield, and Visual Studio Installer (Microsoft's). I am in no way associated with this site, I'm just a user of it.
-
Question: Is it a requirement for you to use a MSI (Windows Installer) based setup? If so, www.installsite.org offers a good product comparison of Wise, Installshield, and Visual Studio Installer (Microsoft's). I am in no way associated with this site, I'm just a user of it.
gama wrote: Question: Is it a requirement for you to use a MSI (Windows Installer) based setup? I would never dream of using anything else! The auto repair and rollback if it encounters a problem is worth its weight in gold (I've had enough of application installations dying and leaving my system in a mess :mad: ) That and of course you get to use cool tools like InstallShield Developer. Did I mention that I use InstallShield Developer? Use InstallShield Developer Now, where's that damned cheque? ________________ David Wulff http://www.davidwulff.co.uk "My grandfather once told me that there are two kinds of people: those who work and those who take the credit. He told me to try to be in the first group, there was less competition there" - Gandhi :bob: uses InstallShield Developer! Why don't you?
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
A review of some of these install programs and others: http://www.onlineinc.com/articles/emedia/ellerin9710.html Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
I tried InstallShield and I really disliked it. I couldn't believe that I would have to get my hands dirty with their scripts just to make some basic changes to the setup program! So I said to myself, there's gotta be an alternative out there that gives me a lot flexibility without having to learn yet another scripting language. Then I found Installer VISE. It was great: very flexible, tons of options, and no scripts. It's been a while since I've used it, but you may wanna give it a shot. Regards, Alvaro
-
The installer put out by Microsoft is very limited. If you setup requirements are simply copy files and thats it, then you should consider it. If you need to prompt the user for input (aside from the installation folder), then it may not help you much as you cannot create custom dialogs in it. Check out www.installsite.org for a comparison of the MSI (Windows Installer) authoring products available.
-
I know some people say that, but I can't help feeling that they are either prejudiced by the price or haven't taken the time to learn the environment's capabilities properly (and boy does it take time). I've been using ISD7 for the past five months or so now, regularly, at various degrees of complication, and once you know your way around and know what does what, it's like changing a nappy. You don't particularly like it, but you know the end result will be better for it. ________________ David Wulff http://www.davidwulff.co.uk "My grandfather once told me that there are two kinds of people: those who work and those who take the credit. He told me to try to be in the first group, there was less competition there" - Gandhi
David Wulff wrote: I've been using ISD7 for the past five months or so now, regularly, at various degrees of complication, and once you know your way around and know what does what, it's like changing a nappy. You don't particularly like it, but you know the end result will be better for it. So maybe you can help me with following issues:
- If component A has only one subcomponent B, you cannot select A without getting B selected automatically. Why this annoying behaviour? The only work-around I know is to add another subcomponent to A, which is hidden.
- Usage of & in component texts. For the display name you use a single &, but in the description text you have two enter a double &, because otherwise an underscore is displayed. Why did the InstallShield developers missed to add the
SS_NOPREFIX
style to the static ctrl? - InstallShield uses the regional settings for the UI language. Why? All other applications I know use the system language, but not InstallShield.
Regards Thomas Finally with Sonork id: 100.10453 Thömmi
Disclaimer:
Because of heavy processing requirements, we are currently using some of your unused brain capacity for backup processing. Please ignore any hallucinations, voices or unusual dreams you may experience. Please avoid concentration-intensive tasks until further notice. Thank you. -
The MSI installer is VERY VERY powerful. Now the editing UI they put out isn't. But that is the installer. Tim Smith Descartes Systems Sciences, Inc.
-
OK. Looking for advice, rumors, anecdotes, horror stories etc., about what the best Windows installer software is. Have looked at: InstallShield most widely known, but major bucks. Wise Solutions seem to be the 'Avis' of installers (we try harder). Indigo Rose looks like it may do the job for a reasonable price. Exemplar Software used this about 4 years ago, looks like it hasn't been updated since. We need to install applications, demo source code, device drivers and ActiveX controls for various hardware products. The targets would be Win95 OSR2, Win98, Win2K, WinXP and WinCE. We've made inquiries to the above vendors, but have either received canned or no responses so far, so I thought that I would ask the troops in the trenches. Steven J. Ackerman, Consultant ACS, Sarasota, FL http://www.acscontrol.com steve@acscontrol.com sja@gte.net
We use Wise now. We dumped Installshield as a result. It's just as expensive as Installshield, but it's eaiser to use once you get used to the differences between the programs. "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001
-
My experience is that InstallShield sucks the most. I think I've seen Wise recommended in previous threads. Although I haven't used it.
Todd Smith
Todd Smith wrote: My experience is that InstallShield sucks the most. I think I've seen Wise recommended in previous threads. The Wise Installation System is very nice to use -- it's very user-friendly, can do anything, and the only coding you need to do is your program. However, I do wish -- as with InstallShield -- that the dialogs could be more customizeable. Sincerely Yours, Brian Hart "And that's the news from Lake Wobegon, where all the women are strong, the men are good-looking, and the children are above-average." - Garrison Keillor
-
I tried InstallShield and I really disliked it. I couldn't believe that I would have to get my hands dirty with their scripts just to make some basic changes to the setup program! So I said to myself, there's gotta be an alternative out there that gives me a lot flexibility without having to learn yet another scripting language. Then I found Installer VISE. It was great: very flexible, tons of options, and no scripts. It's been a while since I've used it, but you may wanna give it a shot. Regards, Alvaro
I've been using IV for some time now and love it. Drag-and-drop for most installs, but has scripting capabilities when needed. BTW I just found http://www.chimpswithkeyboards.com/projects/Installer/ and will be giving it a look. The self-repair option of MSI is so tempting.....
-
Todd Smith wrote: My experience is that InstallShield sucks the most. I think I've seen Wise recommended in previous threads. The Wise Installation System is very nice to use -- it's very user-friendly, can do anything, and the only coding you need to do is your program. However, I do wish -- as with InstallShield -- that the dialogs could be more customizeable. Sincerely Yours, Brian Hart "And that's the news from Lake Wobegon, where all the women are strong, the men are good-looking, and the children are above-average." - Garrison Keillor
Brian Hart wrote: However, I do wish -- as with InstallShield -- that the dialogs could be more customizeable Not all dialogs of InstallShield are as customizable as I want. For example the option dialog to install either Typical, Minimal and Custom. AFAIK you cannot get rid of one of them X| I had do patch the dialog to remove Minimal. Fortunately, the InstallShield Runtime does not complain about it :rolleyes: Regards Thomas Finally with Sonork id: 100.10453 Thömmi
Disclaimer:
Because of heavy processing requirements, we are currently using some of your unused brain capacity for backup processing. Please ignore any hallucinations, voices or unusual dreams you may experience. Please avoid concentration-intensive tasks until further notice. Thank you. -
I use InnoSetup exclusively. It does almost everything that you might need, and if you need to add some custom functionality, you can download the InnoSetup Extensions (which you should do anyway), which amongst other things, grants you the ability to use Pascal scripting to modify behavior or to respond to different actions, and create your own custom wizard pages. I would also seriously suggest downloading ISTool, which is a GUI front end to InnoSetup, and supports the Extensions. All of this is, as before mentioned, free. Jamie Nordmeyer Portland, Oregon, USA
Does InnoSetup support "silent" or "quiet" installs? Also, can I execute another setup program from Innosetup? For example if my program requires a redistributable or I need to launch another program's setup program like SQL Server or Informix or whatever.