Re: [WiX-users] how can I set InstallCondition based on whether my bundle is 32 or 64 bit?

2015-07-02 Thread David Burson
Thanks Jacob, Here is what I now have, in case it is helpful to someone else. I wasn’t able to find an UpgradeCode, so I’m using the ProductCode. It seems to work fine with x86 as best as I can understand the logs (haven’t verified 64-bit yet): In the Bundle element: ?if

Re: [WiX-users] how can I set InstallCondition based on whether my bundle is 32 or 64 bit?

2015-07-02 Thread David Burson
Thanks Jacob, Btw, I’m using WiX 3.9 R2, hoping to go to 3.10 when it is stable. Your solution appears to work, but I have 4 questions about it: 1. The log is strange when I upgrade. I installed version 1.1.4 of my app, then built version 1.1.5, and installed it. In the log for the upgrade,

Re: [WiX-users] how can I set InstallCondition based on whether my bundle is 32 or 64 bit?

2015-07-02 Thread David Burson
oops - 3. “this site” is https://allthingsconfigmgr.wordpress.com/2013/12/17/visual-c-redistributables-made-simple/ 4. “this post” is http://stackoverflow.com/questions/23832713/how-to-check-that-visual-c-2013-redistributable-is-already-installed-using-wix On Jul 2, 2015, at 1:46 PM, David

Re: [WiX-users] how can I set InstallCondition based on whether my bundle is 32 or 64 bit?

2015-07-02 Thread Hoover, Jacob
1. Strange, though on a version I would compare it to a very.x.y.z 2. My way is the old way, and will fail if the product has been patched. Upgrade code should be more reliable. 3. Poke around from

[WiX-users] how can I set InstallCondition based on whether my bundle is 32 or 64 bit?

2015-07-01 Thread David Burson
Hi, I have a single bundle.wxs I use when I’m creating either a 64-bit and a 32-bit installer for my app. In my Chain, I have: ExePackage SourceFile=$(var.KarteDir)\install\win\vcredist_x64.exe PerMachine=yes Permanent=yes Vital=yes Compressed=yes InstallCommand=/quiet /norestart