Hi,

I have a WixStandardBootstrapperApplication.RtfLicense bundle, which makes
sure that .NET framework is installed before the actual application (msi) is
installed. MSI package does not have any UI, since all I need is a path to
install product, which BA provides.

It seems that when using BA, whatever you set on Product's element
MajorUpgrade, it makes no difference. Here is a simple overview of BA/MSI
setup:

<Bundle Version="!(bind.packageVersion.ApplicationInstaller)"
           UpgradeCode="$(var.BundleUpgradeCode)"
           .... >

<Product Id="$(var.ProductCode)"
             Version="!(bind.FileVersion.OeeCoach.exe)"
             UpgradeCode="$(var.UpgradeCode)"
             Language="1033"
             ....>
    <MajorUpgrade DowngradeErrorMessage="sgfds"
Schedule="afterInstallInitialize" />

What I have noticed is that Bundle displays its own downgrade message, so it
does not matter what we put in MajorUpgrade. Also, I could not find anywhere
under the bundle element how to set this message.

My goals:

- A bundle should always upgrade, even when version number is the same.
Image the situation where I have build two bundles with same version/product
code/upgrade code. What I would like is them to behave as they are the same.
This measns: run first bundle, product installed. Run second bundle, product
uninstalled. Current behavior is that I get two installed programs in
Add/Remove. How to achieve this? If this is not possible, can I at least get
upgrade behavior? AllowSameVersionUpgrades does not have any influence also,
as it seems.

- UI completely localized, with custom messages (like downgrade message) -
is this possible with bundle?

- Place that Language code value (1033) into variable (is this possible?) -
when I do so, I get Pattern constraint failed error.

Thanks,
Goran



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bundle-upgrade-tp7591207.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to