Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Steven Ogilvie
Sent: December-19-12 12:22 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer Wouldn't your x86 search need to search the WoW6432Node of HKLM to be correct? HKLM:\Software\Wow6432Node\Microsoft\Windows\Curre

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Arnette, Bill
12 9:24 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer That would only work at build time, if you were compiling an x86 MSI and an x64 MSI. I think you just need to extend your condition to something

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Steven Ogilvie
: [WiX-users] Registry search and condition message in installer Glad it works for you. To explain the logic, it's adding a clause to each condition so that it will resolve to true if you're on the *other* architecture. So: Installed OR (SQLSYNCX64SEARCH > "0" AND VersionNT

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread John Ludlow
"x86" that should work >> >> -Original Message----- >> From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] >> Sent: December-19-12 5:11 AM >> To: General discussion for Windows Installer XML toolset. >> Subject: Re: [WiX-users] Registry search an

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Steven Ogilvie
ndows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer That would only work at build time, if you were compiling an x86 MSI and an x64 MSI. I think you just need to extend your condition to something like this: Installed OR (SQLSYNCX64SEARCH >

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread John Ludlow
cember-19-12 5:11 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Registry search and condition message in installer > > VersionNT64 is undefined on a 32-bit OS so Installed OR (SQLSYNCX64SEARCH > > "0" AND VersionNT64) would be &g

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Steven Ogilvie
n.ogil...@titus.com] Sent: 19 December 2012 04:19 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer Oops I should have said as well... The 32 bit version is checked and correct since it is installed so the logic is

Re: [WiX-users] Registry search and condition message in installer

2012-12-19 Thread Peter Shirtcliffe
December 2012 04:19 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer Oops I should have said as well... The 32 bit version is checked and correct since it is installed so the logic is correct for the 32 bit check

Re: [WiX-users] Registry search and condition message in installer

2012-12-18 Thread Steven Ogilvie
Sent: December-18-12 7:19 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer I always use a verbose log file to check the values of Properties since that where I usually make my mistakes. On Tue, Dec 18, 2012 at 3:

Re: [WiX-users] Registry search and condition message in installer

2012-12-18 Thread Steven Ogilvie
er-18-12 7:19 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Registry search and condition message in installer I always use a verbose log file to check the values of Properties since that where I usually make my mistakes. On Tue, Dec 18, 2012 at 3:

Re: [WiX-users] Registry search and condition message in installer

2012-12-18 Thread Rob Mensching
I always use a verbose log file to check the values of Properties since that where I usually make my mistakes. On Tue, Dec 18, 2012 at 3:14 PM, StevenOgilvie wrote: > I have a 32 bit installer, it can run on a 32 bit or a 64 bit OS... > On the 32 bit OS only the 32 bit pre requisites are run, b

[WiX-users] Registry search and condition message in installer

2012-12-18 Thread StevenOgilvie
I have a 32 bit installer, it can run on a 32 bit or a 64 bit OS... On the 32 bit OS only the 32 bit pre requisites are run, but on the 64 bit OS both 32/64 bit pre requisites are run. The installer verifies that the pre requisites are installed (ya its overkill but that is another story)... On a