Re: [WiX-users] wix as a wrapper for NSIS

2007-06-08 Thread carlH
Slight change to our requirement here as I can see why the other method would be unreliable. 1 - Launch the MSI, this launches our NSIS installer which installs silently (I've already got this working). This also installs our NSIS uninstall exe. 2 - Running the MSI uninstaller should launch our

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-08 Thread Aaron Shurts
How is that a change to your requirement? I could tell you how to do this, but I don't feel like advocating what I consider to be a horrible design. This should get you the information you need, but I guarantee you'll be back on this mailing list in a short period of time trying to resolve

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-08 Thread Ben Greenberg
You may want to consider writing a bootstrapper that strings together your MSI and NSIS packages and installs them sequentially. You can write the bootstrapper in NSIS as well. Then all you need is a simple NSIS uninstall script that calls uninstall on your packages. This way you can avoid

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread Rob Mensching
Subject: [WiX-users] wix as a wrapper for NSIS We have a working NSIS installer for our app that works fine. But one of our clients has asked us to start producing a MSI version. So my question is this. Would it be possible to use wix to create a wrapper installation that runs our NSIS installer

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread Aaron Shurts
My career used to center around systems management and when Sun FINALLY released an MSI for the JRE installer, the world rejoiced. ...until we found out they has just wrapped their junker of an install in an MSI. Then, we cursed their names. If your client is asking for an MSI, they more than

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread carlH
The said that they need it to be an MSI as they have some kind of software management system that only handles MSIs. I don't have any more details than that. Is it possible to force the MSI to not create the uninstall entry? I guess that would be sufficient, it probably wouldn't even matter if

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread Aaron Shurts
If it only accepts MSIs, they are probably deploying software via GPOs and AD. You really should provide them with a true MSI if you don't want a support nightmare. Regards, //aj On 6/6/07, carlH [EMAIL PROTECTED] wrote: The said that they need it to be an MSI as they have some kind of

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread Richard J Foster
On Wed, 2007-06-06 at 11:55 -0700, carlH wrote: The said that they need it to be an MSI as they have some kind of software management system that only handles MSIs. I don't have any more details than that. That's enough though, and basically confirms what I (and others on this list) suspected.

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread carlH
I'll go back to them and ask for some more details. In the mean time, does anyone actually know if what I'm trying to achieve is possible? Carl -- View this message in context: http://www.nabble.com/wix-as-a-wrapper-for-NSIS-tf3878437.html#a10996131 Sent from the wix-users mailing list archive

Re: [WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread Aaron Shurts
Of course it's possible, but it's not suggested at all and I doubt you will find anyone on this list that would condone or endorse it. Regards, //aj On 6/6/07, carlH [EMAIL PROTECTED] wrote: I'll go back to them and ask for some more details. In the mean time, does anyone actually know if