Re: [WiX-users] How to create only installer for 32 Bit and 64 bit OS

2008-09-12 Thread Sandeep Gautam (HCL Technologies Ltd)
-users] How to create only installer for 32 Bit and 64 bit OS If you have some 64-bit files going into System32, I think you need to mark the installer as 64-bit. Otherwise the files won't go to the right directory. I was able to accomplish this using a transform and a custom bootstrapper. I co

Re: [WiX-users] How to create only installer for 32 Bit and 64 bit OS

2008-09-12 Thread Michael Ballou
If you have some 64-bit files going into System32, I think you need to mark the installer as 64-bit. Otherwise the files won't go to the right directory. I was able to accomplish this using a transform and a custom bootstrapper. I compile my MSI once for each CPU type (x86, x64), then create a t

Re: [WiX-users] How to create only installer for 32 Bit and 64 bit OS

2008-09-12 Thread Christopher Karper
This will allow you to have one installer definition, but not a single installer. You will still need to build for 32-bit and 64-bit version of the MSI. To the OP... Why not just make a 32 bit installer, and not restrict it if you don't care which platform you're installing to. a 32 bit instal

Re: [WiX-users] How to create only installer for 32 Bit and 64 bit OS

2008-09-11 Thread Robert O'Brien
Since I know that everything I'm installing is managed code anyCpu build output I enabled this with my service deliverable wix sources using the following syntax.