Re: [WiX-users] Bundle - How to conditionally pass MsiProperty?

2013-08-08 Thread Phill Hogland
Well I think I found a solution (although I did not fully implement the BAFunction yet). If I declare the variable with an empty value, that is acceptable, and then when I use that variable in the MsiProperty, the MSI command line gets TRANSFORMS="", and the install succeeds. So now all I need to

Re: [WiX-users] Failed to create the managed bootstrapper application.

2013-08-08 Thread Blair Murri
In your BootstrapperCore.config, the supportedRuntime and supportedFramework elements use different schemas (different values for the version attribute, supportedRuntime allows use of the sku attribute while supportedFramework allows the runtimeVersion attribute). I suspect that you are crashi

Re: [WiX-users] Bundle - How to conditionally pass MsiProperty?

2013-08-08 Thread Phill Hogland
If I do this: I get a build error that says that the Value attribute cannot be empty. . The bundle compiles but the package rolls back. The MSI packages command shows TRANSFORMS="" What I really want to do is where for Japanese it evaluates to "TRANSFORMS=":1041.mst" and for Engli

Re: [WiX-users] wixlib backward compatibility in WiX 3.5, 3.6, 3.7

2013-08-08 Thread Blair Murri
It's not officially supported, but the guards to prevent using wixlibs from other versions of the toolset can be suppressed (in light, it's the "suppress version" (sv) option). I assume that incompatibilities will cause a crash upon load, but I haven't tested that. The place you are most likel

Re: [WiX-users] Burn: MSI-Bundle message interaction

2013-08-08 Thread Blair Murri
Looks like a bug to me. It should wait for your response. > Date: Thu, 8 Aug 2013 14:26:38 +0200 > From: ihorovets...@sdl.com > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Burn: MSI-Bundle message interaction > > Hi there. > > I'm trying to communicate with bundle BA from MSI cus

Re: [WiX-users] wixlib backward compatibility in WiX 3.5, 3.6, 3.7

2013-08-08 Thread John Cooper
I have used wixlibs on WiX 3.5 and WiX 3.6 projects. My experience is that a Wix 3.5 built wixlib will work with WiX 3.6 projects, but the converse is not true. -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-

[WiX-users] wixlib backward compatibility in WiX 3.5, 3.6, 3.7

2013-08-08 Thread Michael Turner
Does anyone have experience using 3.5-built wixlibs with light.exe in WiX 3.6 and 3.7? For purposes of this discussion, I'm only concerned with the official RTMs (3.5.2519.0, 3.6.3303.0, 3.7.1224.0). My objective is to use wixlibs for inter-project collaboration, so that one project can produce w

Re: [WiX-users] Bundle - How to conditionally pass MsiProperty?

2013-08-08 Thread Blair Murri
Is there any difference between passing an empty TRANSFORMS property and not passing that property? > Date: Thu, 8 Aug 2013 09:29:27 -0700 > From: phogl...@rimage.com > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Bundle - How to conditionally pass MsiProperty? > > I have a bundle

Re: [WiX-users] Burn Built-in Variables & Custom Boostrapper UI

2013-08-08 Thread Blair Murri
String fooString = Bootstrapper.Engine.FormatString(Bootstrapper.Engine.StringVariables["FooVariable"]); > From: r...@robmensching.com > Date: Thu, 8 Aug 2013 07:42:58 -0700 > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Burn Built-in Variables & Custom Boostrapper UI > > You

Re: [WiX-users] BURN - Check browser version and install if not the minimum browser

2013-08-08 Thread Steven Ogilvie
Get the version number of the browser by using the mailto:cmb...@torchmarkcorp.com] Sent: August-08-13 4:24 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] BURN - Check browser version and install if not the minimum browser Can anyone provide an example to handle the following scenar

Re: [WiX-users] Installation failed, but product updated

2013-08-08 Thread Blair Murri
It's true that most of the time this email list manages to strip attachments. For those following this thread, here are the pertinent details from the log: * It is a major upgrade. * RemoveExistingProducts is scheduled after InstallFinalize. * The error is being thrown in the product being remov

[WiX-users] BURN - Check browser version and install if not the minimum browser

2013-08-08 Thread Christopher M. Bunn
Can anyone provide an example to handle the following scenario?? I need get the version of Internet Explorer Browser in a boot strapper project in BURN used for person who loads MSI. I need to be able to install IE 8 (which is our minimum requirements) if the version is less than 8. Any help is

Re: [WiX-users] Installation failed, but product updated

2013-08-08 Thread Phil Wilson
Regarding: "I think the reason the custom action was scheduled for after InstallFinalize is that while removing the shortcuts is really nice on uninstall, a failure there isn't bad enough for us to prevent the user from uninstalling." If you want a failing custom action to be ignored (and not cau

Re: [WiX-users] Msiexec command prompt when running setup

2013-08-08 Thread Phil Wilson
but Natalie is saying that it just appears, says opening connection, sits there and goes away at the end. The fact that you can open a command prompt to perform msiexec commands doesn't seem relevant to Natalie's issue, which is why clarification on the exact meaning of "msiexec command prompt"

Re: [WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-08 Thread Steven Ogilvie
Aw nuts :( I was hoping that was something in Burn that I could use... Hey on the bright side the extended BA will be in 3.8 :) Steve -Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: August-08-13 1:41 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-use

Re: [WiX-users] Msiexec command prompt when running setup

2013-08-08 Thread Steven Ogilvie
In a dos box (cmd prompt) you type "msiexec.exe /I Myinstaller.msi" you can add other options like logging, no reboot etc.. -Original Message- From: Phil Wilson [mailto:phil.wil...@mvps.org] Sent: August-08-13 1:46 PM To: 'General discussion for Windows Installer XML toolset.' Subject: R

Re: [WiX-users] Msiexec command prompt when running setup

2013-08-08 Thread Phil Wilson
I don't know what an msiexec command propt is - you may need to be more specific about what it is and the exact message text. The only scenarios I can think of where you might see that kind of informational dialog that just goes away are remote desktop types, or maybe Terminal Server or VMWare co

Re: [WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-08 Thread Phill Hogland
I just started working with the WixExtendedBootstrapperApplication.HyperlinkLicense yesterday, and there is some functionality that I do not understand yet. But it seems like you could use the BAFunction.dll template. In the bundle you would do something like: " " In the BAFunction OnPlan, do

[WiX-users] Bundle - How to conditionally pass MsiProperty?

2013-08-08 Thread Phill Hogland
I have a bundle with an MsiPackage. The MsiPackage has certain LCID.mst transform files. I pass the TRANSFORMS property using a MsiProperty. But in the case where the user is using English (or one of the 'unsupported' by this package, LCIDs) how do I not pass th TRANSFORMS proiperty? I have tr

[WiX-users] is there a way to set a variable by selecting a different radiobutton in BURN?

2013-08-08 Thread StevenOgilvie
Hi folks: I have a hyperlink for the EULA (htm file) I am allowing the user to select which server to install i.e. RadioButton1 "server" RadioButton2 "server express" RadioButton3 "another install" is there a way to set a variable based on which radiobutton has been selected? thanks, Steve

Re: [WiX-users] Burn and uninstall shortcut

2013-08-08 Thread Marc Bartsch
Hi Rob, Thanks for your reply. I will remove the uninstall shortcut. Best wishes, Marc. From: Rob Mensching Sent: ‎08/‎08/‎2013 15:46 To: General discussion for Windows Installer XML toolset.

Re: [WiX-users] Burn and uninstall shortcut

2013-08-08 Thread Rob Mensching
Not easily supported. The Windows Logo says to not create uninstall shortcuts so it's not an easily supported scenario in Burn. On Thu, Aug 8, 2013 at 5:14 AM, Marc Bartsch wrote: > Hi, > > We create an installation .exe with burn that successfully installs .NET4 > as a prerequisite and our .msi

Re: [WiX-users] Burn UI Intranet problem

2013-08-08 Thread Rob Mensching
Sounds like the machine's root certificates are out of date. Burn's call to verify the payloads will cause Windows to update the root certificates automatically, if connected. On Thu, Aug 8, 2013 at 6:41 AM, Adkins, Christopher < christopher.adk...@docuware.com> wrote: > Hi everybody! > > I was

Re: [WiX-users] Burn Built-in Variables & Custom Boostrapper UI

2013-08-08 Thread Rob Mensching
You need to format the string. On Thu, Aug 8, 2013 at 6:18 AM, Veli-Matti Visuri < veli-matti.vis...@futuremark.com> wrote: > Hi, I've been working on a bootstrapper with a customized UI and I cannot > figure out a way on how to "translate" the burn built-in variables from the > engine to the UI

[WiX-users] Burn UI Intranet problem

2013-08-08 Thread Adkins, Christopher
Hi everybody! I was wondering if anyone has any experience with issues using a Custom BA on a closed Intranet. When I do this in tests I get the following at the end of my log: [1704:11DC][2013-08-06T15:29:16]: Error 0x800b010a: Failed authenticode verification of payload: C:\ProgramData\Packa

[WiX-users] Msiexec command prompt when running setup

2013-08-08 Thread Natalie Carr
Hi, Seeing a strange problem with a few of my setups, when they are run a msiexec command prompt opens saying opening connection and it stays until the setup has been completed. Does anyone know why this would be happening? Thanks Natalie --

[WiX-users] Burn Built-in Variables & Custom Boostrapper UI

2013-08-08 Thread Veli-Matti Visuri
Hi, I've been working on a bootstrapper with a customized UI and I cannot figure out a way on how to "translate" the burn built-in variables from the engine to the UI. You can see the list of the variables here: http://wix.sourceforge.net/manual-wix3/bundle_built_in_variables.htm I'll try to exp

[WiX-users] Burn: MSI-Bundle message interaction

2013-08-08 Thread Ihor Horovetskyi
Hi there. I'm trying to communicate with bundle BA from MSI custom action code on C#. So far no luck: var result = session.Message(InstallMessage.Error + (int)MessageButtons.RetryCancel, new Record(1) {FormatString = "Choose Try or Cancel."}); My BA handles message in Error handler and receives

[WiX-users] Burn and uninstall shortcut

2013-08-08 Thread Marc Bartsch
Hi, We create an installation .exe with burn that successfully installs .NET4 as a prerequisite and our .msi which was created with a wix script. All this works quite well. Our wix script creates an uninstall shortcut (pretty much taken from the wix how-to pages): If I use this shortcut,

[WiX-users] Failed to create the managed bootstrapper application.

2013-08-08 Thread Other Barjonas
Hello, I'm having trouble getting my managed custom UI to be loaded by burn. The key error in the log seems to be: Error 0x80131902: Failed to create the managed bootstrapper application. >From research, it seems that this is a very general failure. The usual problem that seems to cause it is