Re: [WiX-users] Repair Problem

2012-12-11 Thread Rob Mensching
Check out the File Versioning Rules topic in the MSI SDK. It explains this behavior. On Tue, Dec 11, 2012 at 3:44 PM, Sanjay Poria wrote: > My company moved to using msi around a year and I authored a major product > release and subsequent patch files (small update msp's that do not > increment

[WiX-users] CustomTables & BootstrapperApplicationData

2012-12-11 Thread chefkoch
I am trying to create a custom table and making the content available for Burn/CustomMBA via the BootstrapperApplicationData.xml. When creating a custom table inside my MSI product using the following excample (from http://blog.torresdal.net/2008/10/24/wix-and-dtf-using-a-custom-action-to-list-av

[WiX-users] Repair Problem

2012-12-11 Thread Sanjay Poria
My company moved to using msi around a year and I authored a major product release and subsequent patch files (small update msp's that do not increment the baseline version) using wix. The product contains a number of binary files. Recently we had an issue where the customer manually replaced a

Re: [WiX-users] run Sql commands through wix

2012-12-11 Thread John Cooper
Suitable de-fanged: -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com -Original Message- From: John H Bergman (XPedient) [mailto:john.berg...@xpdnt

Re: [WiX-users] Alter Packages in Custom BA? [BURN]

2012-12-11 Thread Nicholas Pierce
You can use the InstallCondition attribute of MsiPackage (or ExePackage or MsuPackage) to control whether a package is installed. If InstallCondition evaluates to true, then the package is installed, but if InstallCondition evaluates to false, then the package will be removed unless it's permanent

[WiX-users] Bundles in Bundles: How? (v3.7 wix Bundle Reference Counting feature)

2012-12-11 Thread Wesley Manning
Hi, Question for one of the developers maybe. I'm using the bundle addon feature which is working good. Now I want to include a couple of the addon bundles I created in the main bundle (my main installer). How do I include bundles in bundles? There is ExePackage and MsiPackage but no Bundle

[WiX-users] Alter Packages in Custom BA? [BURN]

2012-12-11 Thread Bull, Thomas
I am making a custom bootstrapper WPF UI to allow consumers to select which MSIs and specific features within MSIs to install. I think I have my head around how to select features within an MSI by setting Engine.StringVariables["TEMPVAR"] and then setting an MSIProperty to that Burn variable.