Re: [WiX-users] The bundle's version

2012-09-27 Thread Neil Sleightholm
Ah the same version upgrade problem - I have questioned this quite a bit on this list and raised a defect http://sourceforge.net/p/wix/bugs/3065/. There isn't a workaround in WiX other than changing the bundle version (yet) but if you have your own BA I have put some code in the defect that should

[WiX-users] Major Upgrades, Burn and determining, which actions to do

2012-09-27 Thread Christian Hausknecht
Hello folks, as I did not get any answers to my last question, I try to be more precise today. I want to make an Installer with burn, that installs quite a big application. So there are different things to do, like just install some files, copy some files around, initiating a database and so

[WiX-users] custom action when a radio button is selected

2012-09-27 Thread Natalie Carr
Hi, Can anyone tell me please if it is possible to launch a custom action when a radio button is selected and if not the best way about doing something like this. I see an answer on this that it was not possible but it was written in 2010 and I want to ensure it has not been updated. Kind

[WiX-users] Multi-Instance Flag on Components

2012-09-27 Thread tyler.w.reid
Hello, According to the documentation the MultiInstance attribute causes a new Guid to be generated for each instance. Due to this should I still place a Guid and MultiInstance attribute on each component or is it sufficient to just have the MultiInstance and let the linker handle the

[WiX-users] Custom Bootstrapper Application: Problem when trying to detect if Bundle is already installed

2012-09-27 Thread Frauenhoffer, Sabine
Hi there, I have a problem when trying to detect whether my Bundle is already installed. My usecase is as follows: I am creating a bundle with a custom UI. On startup I need to check whether my bundle is already installed in the exactly same version to determine if I have to show the

Re: [WiX-users] Custom Bootstrapper Application: Problem when trying todetect if Bundle is already installed

2012-09-27 Thread Peter Shirtcliffe
Could you use the built-in variable WixBundleInstalled instead ? I'm not sure if that's version specific or not. It might be worth a look. -Original Message- From: Frauenhoffer, Sabine [mailto:sabine.frauenhof...@haufe-lexware.com] Sent: 27 September 2012 14:13 To:

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Frauenhoffer, Sabine
I tried that one already. It always returned 0 no matter what version my bundle had. -Ursprüngliche Nachricht- Von: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] Gesendet: Donnerstag, 27. September 2012 15:36 An: General discussion for Windows Installer XML toolset. Betreff: Re:

Re: [WiX-users] shared services question...

2012-09-27 Thread Hoover, Jacob
First off, I avoid merge modules and wix libs like the plague. I think I would go for an alternate implementation where I would have 3 MSI's, isolating the service into its own independent package and utilize burn to wrap the prerequisites and the two MSI's in question together. From what I

Re: [WiX-users] shared services question...

2012-09-27 Thread Steven Ogilvie
I thought of that but I don't see how I can create a bootstrapper that allows the user to select which feature to install Being 1. The Server install 2. The Client install... Steve Btw I will try to move the service creation to a ServiceInstall/ServiceConfig/ServiceControl elements.

[WiX-users] Getting FileInUse to work on Install (works on Uninstall)

2012-09-27 Thread StevenOgilvie
Hi all, I have an install that creates an extension in MS Outlook. So outlook needs to close before copying files etc.. and then restart after. (Just like it does on an uninstall) I have a CloseApplication and a set property custom action: util:CloseApplication Id=CloseMicrosoftOutlook

[WiX-users] Patch installing component with Not Installed condition

2012-09-27 Thread Tom Crozier
I have an installer that contains the following component. Component Id=CompUser Guid={226F7E2A-2FBD-2ed4-B355-52C80E95A212} KeyPath=yes Condition![CDATA[NOT Installed]]/Condition Util:User Id=user.service Name=[USERACCOUNT]

Re: [WiX-users] In .wixproj, default Build Configuration ignored or not settable?

2012-09-27 Thread john.burak
This is an old thread, but I finally got around to figuring out an answer. There may be a Votive bug, or a VisualStudio bug/feature. Maybe you guys can tell me. When you fire up VisualStudio (I'm using 2010) and hit Build/F6 it does not, per se, build the Default Build Configuration (the one that

Re: [WiX-users] Getting FileInUse to work on Install (works on Uninstall)

2012-09-27 Thread Phil Wilson
A verbose log might show you why it wants to reboot, and it's not clear to me why an install would offer a FilesInUse situation - you're registering an extension, but I don't see why Outlook is using anything that you're changing. Uninstall is clearly different because you are deleting an

Re: [WiX-users] Getting FileInUse to work on Install (works on Uninstall)

2012-09-27 Thread Steven Ogilvie
It's a COM add in for the Ribbon bar in Outlook, Outlook needs to be restarted in order for the add in to show... So the fileinuse is the perfect tool to use since it closes the app and ATTEMPTS to restart after... Steve -Original Message- From: Phil Wilson

Re: [WiX-users] In .wixproj, default Build Configuration ignored or not settable?

2012-09-27 Thread John H Bergman (XPedient)
Are you not specifying the build configuration you wish to build? -Original Message- From: john.burak [mailto:john.bu...@telvent.com] Sent: Thursday, September 27, 2012 12:08 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] In .wixproj, default Build Configuration ignored

Re: [WiX-users] In .wixproj, default Build Configuration ignored or not settable?

2012-09-27 Thread john.burak
The original issue was that we wanted to specify which configuration builds by default after launching the IDE with no preexisting .suo file. Turns out this is dictated by the names of the configurations in the solution. -- View this message in context:

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Brian C
If you have an msi which is always installed, you could check the version of it in the DetectRelatedMsiPackage callback.  You have access to both the major and minor version in the event argument. From: Frauenhoffer, Sabine

Re: [WiX-users] The bundle's version

2012-09-27 Thread Rob Mensching
You don't need a workaround. You create a BA that chooses that same versions should upgrade. The wixstdba does not choose to do that today. To be clear, the old bundle is not overwritten. The new bundle comes along, finds the old bundle there and (by default) tells the old bundle to remove itself

Re: [WiX-users] Custom Bootstrapper Application: Problem whentrying todetect if Bundle is already installed

2012-09-27 Thread Rob Mensching
The wixstdba uses WixBundleInstalled variable to determine maintenance mode. I would recommend doing the same. On Thu, Sep 27, 2012 at 4:03 PM, Brian C briancoving...@yahoo.com wrote: If you have an msi which is always installed, you could check the version of it in the DetectRelatedMsiPackage

Re: [WiX-users] In .wixproj, default Build Configuration ignored or not settable?

2012-09-27 Thread Rob Mensching
There is a bug open that the solution builds don't work quite right ( http://sourceforge.net/p/wix/bugs/2993/). My understanding is that this is an issue with MPF provided by Visual Studio and no one has tracked down how to fix it in Votive. Your issue sounds like it might be related. On Thu, Sep

Re: [WiX-users] Patch installing component with Not Installed condition

2012-09-27 Thread Rob Mensching
The Condition is only evaluated once unless the Component is marked Transitive='yes' On Thu, Sep 27, 2012 at 9:03 AM, Tom Crozier tcroz...@rackwise.com wrote: I have an installer that contains the following component. Component Id=CompUser Guid={226F7E2A-2FBD-2ed4-B355-52C80E95A212}

Re: [WiX-users] custom action when a radio button is selected

2012-09-27 Thread Rob Mensching
Sadly, the MSI UI functionality hasn't really changed since 1998 (although they added a hyperlink control in 2011 or so). You need to key it off a Publish action. On Thu, Sep 27, 2012 at 3:29 AM, Natalie Carr natalie.c...@measuresoft.comwrote: Hi, Can anyone tell me please if it is possible to

Re: [WiX-users] Major Upgrades, Burn and determining, which actions to do

2012-09-27 Thread Rob Mensching
1. IIRC, (I try to avoid CopyFile so I could be mistaken) uninstalling an MSI does not remove the copied content. You could create a quick MSI to verify. 2. I highly recommend making your scripts idempotent. Thus, you can always run them and if they've already been applied, they do nothing. Makes

Re: [WiX-users] Adding a property to install a service

2012-09-27 Thread Rob Mensching
The MSI field for setting that value ServiceInstall.StartType unfortunately is not a formatted field so you can't use a property to set it like that. On Mon, Sep 24, 2012 at 8:14 AM, Mikkili, Lakshmikanth lmikk...@medassets.com wrote: Hi, I have a question on how to start an msi with a

Re: [WiX-users] Does Wix bootstrapper ignore regional settings? (2)

2012-09-27 Thread Rob Mensching
Hmm, have you tried debugging into the code? It seemed to work in my tests. Maybe there is something different about the locale settings on your OS? On Tue, Sep 25, 2012 at 1:32 AM, Harald Dersch harald.der...@vasco.comwrote: If the payloads weren't laid out correctly, shouldn't selecting the

Re: [WiX-users] Files not being removed on uninstall...

2012-09-27 Thread Rob Mensching
This is a mystery to me. Did you ever figure out what was going wrong? On Tue, Sep 25, 2012 at 10:40 AM, Steven Ogilvie steven.ogil...@titus.comwrote: INSTALL.LOG MSI (s) (F4:0C) [12:08:42:133]: Component: cmpA65729EDA2FB9E1E1F2E330E73315D53.5559BD7F_840B_4DBA_8D43_1A50B01331DC; Installed:

Re: [WiX-users] Bundle upgrade rollback removes the entire product other than bundle ARP entry

2012-09-27 Thread Rob Mensching
I'm a little confused by the series of steps here. Can you share the Plan section for the new and old bundles? On Fri, Sep 21, 2012 at 1:03 PM, shruthi02 shru...@live.com wrote: Hi, During bundled upgrade, if the uninstall of the old bundle fails, this invokes a rollback on MSI upgrade. This

Re: [WiX-users] Overriding the output path

2012-09-27 Thread Rob Mensching
If you have a localizing .wxl file, the localized directory behavior kicks in. I do not think there is a way to disable when using a .wxl file. On Mon, Sep 24, 2012 at 6:50 AM, huntantr anthony.hun...@invensys.comwrote: I'm building my install through VS2010 using Wix 3.6. When my msi is

Re: [WiX-users] Overriding Default NETWORK SERVICE Identiry for IISAPPOOL if Propery is Present

2012-09-27 Thread Rob Mensching
I think this is currently a limitation in the custom action. It doesn't switch like that. Be cool if the code was updated to handle the case, if my memory is correct. On Wed, Sep 19, 2012 at 11:12 AM, Zac Emmel zacha...@microsoft.com wrote: (Using WiX 3.5) For a particular web application, we

Re: [WiX-users] Overwrite MSI Error Messages

2012-09-27 Thread Rob Mensching
I think the Error element lets you do this. On Mon, Sep 24, 2012 at 4:16 AM, Natalie Carr natalie.c...@measuresoft.comwrote: Hi, I would like my Edit control to only allow integers, I have the integer attribute set to yes. What I would like to be able to do is overwrite the MSI error 2892 so

Re: [WiX-users] [SPAM] Changing installation features with burn

2012-09-27 Thread Rob Mensching
The wixstdba is not really designed to install MSIs with DisplayInternalUI. It shows progress behind the MSI UI and other such things. The wixstdba is really just a simple UI and minimal needed to install multiple packages (without showing their UI). You might need a BA with different