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

2015-07-01 Thread Hoover, Jacob
You could use a preprocessor condition. IE: -Original Message- From: David Burson [mailto:david_bur...@ntm.org] Sent: Wednesday, July 01, 2015 2:37 PM To: General discussion about the WiX toolset. Subject: [WiX-users] how can I set InstallConditi

Re: [WiX-users] upgrade fails with 1612 error

2015-07-01 Thread Phil Wilson
If you look at those logs the issue is as I described: "Warning: Local cached package 'C:\Windows\Installer\3d3d06.msi' is missing." --- Phil Wilson On Wed, Jul 1, 2015 at 11:38 AM, gapearce wrote: > Sorry, here are the two logs. > Setup_AACU_2015-06-30_17-43-54.log >

Re: [WiX-users] QuickTime is installing when it is already installed.

2015-07-01 Thread garymonk
I have modified my code to the following... Will this install correctly on both a 32 and a 64 bit machine? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/QuickTime-is-installing-when-it-is-already-installed-tp7600756p7600765.html Sent from t

Re: [WiX-users] QuickTime is installing when it is already installed.

2015-07-01 Thread Bob Arnson
FWIW, you don't need the AND NOT clause in your InstallCondition. If the DetectCondition is true, Burn knows it doesn't need to install it. The InstallCondition at that point can only uninstall the package. ___ FireGiant  |  Dedicated s

Re: [WiX-users] QuickTime is installing when it is already installed.

2015-07-01 Thread garymonk
Thank you for the reply. Will the code you provided work with both 32 and 64 bit systems? Thanks, Gary -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/QuickTime-is-installing-when-it-is-already-installed-tp7600756p7600763.html Sent from the wix-u

[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: So, the InstallCondition is checking the hardware my users are installing on to see which vcredist to install. Instead, I want the InstallCondition

Re: [WiX-users] upgrade fails with 1612 error

2015-07-01 Thread gapearce
Sorry, here are the two logs. Setup_AACU_2015-06-30_17-43-54.log Setup_AACU_2015-06-30_17-37-01.log

Re: [WiX-users] QuickTime is installing when it is already installed.

2015-07-01 Thread Hoover, Jacob
It's an EXE package, so burn has no clue how to determine if it's installed or not. Do you have a Reg/File/Msi search to determine if it's installed? Also, I'd suggest using a specific variable for this. Ex: .. -Original Message- From: garymonk [mailto:g...@guruden

[WiX-users] QuickTime is installing when it is already installed.

2015-07-01 Thread garymonk
I have a bundle that installs a number of prerequisites. One of those prereqs is QuickTime. Here is the code... As you can see the install condition is "NOT installed". Why would QuickTime install even when the install condition says it should only be installed when it is not installed? Than