Re: [WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows

2009-11-10 Thread Lukhnos D. Liu
On Nov 9, 2009, at 9:45 PM, Blair wrote: Create a LaunchCondition by placing the following element under your Program element (anytime after the Package element): Condition Message=Requires 32-bit Windows. Use our 64-bit package on this platformNOT VersionNT64/Condition Thanks all! This

[WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows

2009-11-09 Thread Lukhnos D. Liu
Hi, When the Platforms property of the Package tag is set to x64, the built package becomes 64-bit-only and will not install on 32-bit Windows. Is there a way to do the reverse, i.e. disallowing a 32-bit-only package to be installed on 64-bit Windows? This is because we have two versions for

Re: [WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows

2009-11-09 Thread Dieter Lunn
Why would you want to? a 64bit computer can run 32bit applications it just can't be done the other way around hence the restriction. If you must you might might have to do the detection and blocking yourself. Dieter Lunn http://www.coder2000.ca On Mon, Nov 9, 2009 at 3:01 AM, Lukhnos D. Liu

Re: [WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows

2009-11-09 Thread Rob Hamflett
Adding tags like these should do it: UI Error Id=25000Please use the 64-bit installer/Error /UI CustomAction Id=Need64BitVersion Error=2001 / InstallUISequence Custom Action=Need64BitVersion Before=AppSearchVersionNT64/Custom /InstallUISequence Rob Lukhnos D. Liu wrote: Hi, When

Re: [WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows

2009-11-09 Thread Blair
...@lithoglyph.com] Sent: Monday, November 09, 2009 1:01 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Disallowing installation of 32-bit-only package on 64-bit Windows Hi, When the Platforms property of the Package tag is set to x64, the built package becomes 64-bit-only