[WiX-users] Why isn't this registry entry removed

2007-07-03 Thread carlH
I need to remove a registry entry on install that may or may not exist. I found a thread on this forum that said a good way to do this is using this method, but it fails to remove the entry. What have I done wrong?

Re: [WiX-users] Deleting registry entry using custom action

2007-06-26 Thread carlH
I've already done this using a CA that launches a VB script. I was wondering if there's an alternative method that doesn't require any external scripting. -- View this message in context: http://www.nabble.com/Deleting-registry-entry-using-custom-action-tf3982140.html#a11305744 Sent from the wi

Re: [WiX-users] Deleting registry entry using custom action

2007-06-26 Thread carlH
The registry entry that I need to remove was not created by the wix installer, and also it has to be done at the very end of the installation (hence why I'm using a custom action) -- View this message in context: http://www.nabble.com/Deleting-registry-entry-using-custom-action-tf3982140.html#a1

[WiX-users] Deleting registry entry using custom action

2007-06-26 Thread carlH
I looking for a reliable method of using a custom action to delete a registry entry. I've already achieved this by using the custom action to launch a vb script, but I'm hoping that there might be a way of doing the same thing just using WiX. -- View this message in context: http://www.nabble.

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-22 Thread carlH
C:\Program Files\Folder\uninst.exe Installed AND REMOVE="ALL" The NSIS installer creates it's own uninstaller as part of the installation process. I'm happy with this part of the process. I've searched for solutions for using a custom action

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-22 Thread carlH
This might help explain a bit more C:\Program Files\Folder\NSISinstaller.exe NOT Installed This works fine, the first thing that happens is the

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-22 Thread carlH
It certainly isn't my preferred method either:) So back to the original question, is what I'm trying to achieve possible? -- View this message in context: http://www.nabble.com/Deleteing-a-registry-entry-at-the-end-of-the-install-tf3952329.html#a11247918 Sent from the wix-users mailing list arch

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-21 Thread carlH
It's purely a matter of economics, we have a proven NSIS installer that works perfectly but we have one client (an important one, but not one that pays a lot) who requires an MSI installer. Rewriting the installer for them is not viable as it's quite complex and so we are looking for an easy way

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-20 Thread carlH
a wrote: > > Could you delete it as part of the install instead of at the end up the > install? > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of carlH > Sent: Wednesday, June 20, 2007 7:33 AM > To: wix-users@lists.source

Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-20 Thread carlH
The registry entry was not created by the MSI installer. C -- View this message in context: http://www.nabble.com/Deleteing-a-registry-entry-at-the-end-of-the-install-tf3952329.html#a11214672 Sent from the wix-users mailing list archive at Nabble.com. -

[WiX-users] Deleteing a registry entry at the end of the install

2007-06-20 Thread carlH
Is there a way to delete a registry entry using a custom action? The registry entry is created as part of the install process, but the very final thing I must do is to remove it. I've thought about using a custom action to launch a bit of vb code that will do it, but I'm thinking there must a mo

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-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 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

[WiX-users] wix as a wrapper for NSIS

2007-06-06 Thread carlH
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 silently, then removes all traces of itself.