[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... ExePackage Id=Package_QuickTime Cache=no Compressed=$(var.Compressed) Description=Apple QuickTime 7 DownloadUrl=$(var.DownloadRepo)/{2}

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: util:RegistrySearch Root=HKLM Key=SOFTWARE\Adobe\Adobe SVG Viewer\3.03 Value=dir

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 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n7600761/Setup_AACU_2015-06-30_17-43-54.log Setup_AACU_2015-06-30_17-37-01.log

[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

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

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

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 mr_gapea...@yahoo.com wrote: Sorry, here are the two logs.