Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-20 Thread Nan Zang
n for Windows Installer XML toolset. Subject: Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA The error message is from Windows (ERROR_OLD_WIN_VERSION). The only other possibility would be to change the prereq-BA to a different native BA that would determine the applicability of

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-20 Thread Blair Murri
-users@lists.sourceforge.net > Date: Tue, 20 Aug 2013 06:33:18 + > Subject: Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA > > I tried it, however it doesn't work fully for my case. Besides the OS > version, I also need to check the architecture of

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-19 Thread Nan Zang
t: Monday, August 19, 2013 10:46 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA Bundle\@Condition attribute. The limited conditions it can evaluate include OS. > From: naz...@micros

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-19 Thread Blair Murri
Bundle\@Condition attribute. The limited conditions it can evaluate include OS. > From: naz...@microsoft.com > To: wix-users@lists.sourceforge.net > Date: Tue, 20 Aug 2013 05:12:55 + > Subject: Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA > > Hi

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-19 Thread Nan Zang
: Bundle condition does not work if using MBA The WixBA at src\Setup\WixBA is the C# managed BA that is used by the installer that installs the toolset. The Bundle does not have a bal:Condition in it and as far as I can tell there is nothing directly related to Bal:Condition in WixBA. However I

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-02 Thread Phill Hogland
The WixBA at src\Setup\WixBA is the C# managed BA that is used by the installer that installs the toolset. The Bundle does not have a bal:Condition in it and as far as I can tell there is nothing directly related to Bal:Condition in WixBA. However I think what folks have suggested is that one cou

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-01 Thread Blair Murri
gt; Date: Thu, 1 Aug 2013 06:47:11 -0700 > From: zarko.kosto...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] Wix Burn: Bundle condition does not work if using > MBA > > Hi, > Just to make it clear from the start, I'm rather new with the

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2013-08-01 Thread kosta
Hi, Just to make it clear from the start, I'm rather new with the Burn bundle. I'm having the same problem of bal:Conditon not triggering and do not understand the proposed solution. I have and in the Bundle element as a parent I defined a lot of bal conditions like: VersionNT = v5.0, 0, 1, 1=2 e

Re: [WiX-users] Wix Burn: Bundle condition does not work if using MBA

2012-11-05 Thread Rob Mensching
That's implemented by the wixstdba. You'd need to implement the same code in your BA. On Mon, Nov 5, 2012 at 10:28 AM, vasjko wrote: > Hi, > > I'm using bundle condition in WIX burn like this: > (VersionNT > >= v6.2), where bal is xmlns:bal=" > http://schemas.microsoft.com/wix/BalExtension";

[WiX-users] Wix Burn: Bundle condition does not work if using MBA

2012-11-05 Thread vasjko
Hi, I'm using bundle condition in WIX burn like this: (VersionNT >= v6.2), where bal is xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"; It works fine and blocks installation if , but does not work if . I can check this condition using Engine.EvaluateCondition in my MBA C# code, b