Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-12 Thread victorwhiskey
John and Rob, thanks for the reply. All MSIs are using Major Upgrades. The only relationship between B and C is only the shared components in A or A'. And the product code is different between A and A'. Would using a wixlib work or be better than an MSI? Thanks! -- View this message in

Re: [WiX-users] BAFunctions.dll to set WixBundleName from the language of the user's computer

2015-04-12 Thread Sean Hall
The Window text is set too early to do anything about it from IBootstrapperBAFunction. You should localize that with a string in the wxl file. On Tue, Apr 7, 2015 at 2:17 PM, David Burson david_bur...@ntm.org wrote: In case it’s helpful to anyone, I posted how I got this working on SO:

Re: [WiX-users] Bundle problems

2015-04-12 Thread Sean Hall
What version of WiX are you using? This looks like an issue fixed in v3.9: http://wixtoolset.org/issues/4292/ On Thu, Apr 2, 2015 at 2:27 PM, kurt.jen...@us.ophiropt.com kurt.jen...@us.ophiropt.com wrote: Now we KNOW we have found the -real- problem... :)~ Tried to use Upgrade to detect

Re: [WiX-users] Burn and chaining multiple MSIs and detecting proper states for each MSI

2015-04-12 Thread Rob Mensching
Possibly. Would need to understand the scenario well to make a recommendation. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: victorwhiskey

Re: [WiX-users] UserLanguageID vs. WixStdBALanguageId

2015-04-12 Thread Sean Hall
If you don't have a theme for the language id of the user's machine, then WixStdBALanguageId won't be set. WixStdBALanguageId is set to the language id of the theme that StdBA is actually using. On Thu, Apr 2, 2015 at 3:26 PM, David Burson david_bur...@ntm.org wrote: * UserLanguageID - gets

Re: [WiX-users] Modifying Request State

2015-04-12 Thread Sean Hall
The engine bases the action off of the requested state, there's no way to set the action state. There is no way to modify the requested state of packages from IBootstrapperBAFunction today. On Fri, Apr 3, 2015 at 8:19 AM, Phill Hogland phogl...@rimage.com wrote: The chain is installed from top

Re: [WiX-users] Changing state in bafunctions.dll?

2015-04-12 Thread Sean Hall
There is no way to modify the requested state of packages from IBootstrapperBAFunction today. Neil was referring to the state of the machine, like doing stuff with files or the registry. On Fri, Apr 3, 2015 at 4:51 PM, Cris Moore cris.w.mo...@gmail.com wrote: I have a bundle with two

Re: [WiX-users] how to define a custom variable in bundle.wxs, and get its value in BAFunctions.dll?

2015-04-12 Thread Sean Hall
This should just work. I'm guessing you've put the Variable in a Fragment that isn't getting pulled in. Does the variable show up at the end of the log? On Fri, Apr 3, 2015 at 5:17 PM, roberthyang robert_y...@agilent.com wrote: This worked fine for us inside OnDetectComplete on Wix 3.8

[WiX-users] How to include an entire folder as payload for my custom bootstrapper application?

2015-04-12 Thread Roni Fuchs
Hi everyone, How can I include an entire folder as a payload? License folder instead of a single license, because I have several licenses in several languages ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; Fragment PayloadGroup Id=UiPayloadGroup

Re: [WiX-users] How to include an entire folder as payload for my custom bootstrapper application?

2015-04-12 Thread Rob Mensching
List all the files in the folder as Payload elements. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Roni Fuchs [mailto:ro...@microsoft.com] Sent: Sunday, April 12, 2015

Re: [WiX-users] How can I prevent Bundle from overriding MSI Upgrade Code?

2015-04-12 Thread Nir Bar
The bundle installs as a separate product with it's own upgrade code, so in fact 2 upgrade codes are installed - that of the bundle and that of the product (actually for the bundle this isn't really an upgrade code since it isn't a Windows Installer package) If you want the 3 products to coexist

Re: [WiX-users] Verb localization

2015-04-12 Thread Nir Bar
Windosw Installer localization https://msdn.microsoft.com/en-us/library/aa369769%28v=vs.85%29.aspx is achieved using transforms (mst files) that can be embedded in a single multi-lingual MSI. You should use WiX localization