Re: [WiX-users] Installing a 64 bit file as part of a 32 bit setup

2014-10-16 Thread Phil Wilson
The rules say a 32-bit package can contain only 32-bit components: http://msdn.microsoft.com/en-us/library/aa367451(v=vs.85).aspx and Heath's article is required reading: http://blogs.msdn.com/b/heaths/archive/2008/01/15/different-packages-are-required-for-different-processor-architectures.aspx

Re: [WiX-users] Installing a 64 bit file as part of a 32 bit setup

2014-10-15 Thread Phill Hogland
The msi package has to target either x64 or x86 and directories used in the package need to derive from a MSI defined root folder which has correct bitness. You can use Burn to chain x64 MSI package to install native files with a x86 MSI package to install the 32 bit code. (In my case the driver

Re: [WiX-users] Installing a 64 bit file as part of a 32 bit setup

2014-10-15 Thread Brian Enderle
gt; -Original Message- > From: Brian Enderle [mailto:bria...@gmail.com] > Sent: Wednesday, October 15, 2014 2:33 PM > To: WiX Users > Subject: [WiX-users] Installing a 64 bit file as part of a 32 bit setup > > I am creating an installer for a 32 bit application. One of i

Re: [WiX-users] Installing a 64 bit file as part of a 32 bit setup

2014-10-15 Thread Hoover, Jacob
: [WiX-users] Installing a 64 bit file as part of a 32 bit setup I am creating an installer for a 32 bit application. One of items that needs installed is a 64 bit CLR (SSHRA_Extend64.dll). The file needs to be installed to "C:\Program Files\blah" on a 64 bit Windows machine,

[WiX-users] Installing a 64 bit file as part of a 32 bit setup

2014-10-15 Thread Brian Enderle
I am creating an installer for a 32 bit application. One of items that needs installed is a 64 bit CLR (SSHRA_Extend64.dll). The file needs to be installed to "C:\Program Files\blah" on a 64 bit Windows machine, while the application needs to be installed to "C:\Program Files (x86)\blahblah" I a