Are you installing only 32-bit dll's?  Do you have any problems with file
and registry redirection to the 32-bit locations on a 64-bit os?  If your
program isn't affected by that, than you can use one package for both.  I
just wanted to mention that because just conditioning the components isn't
typically enough to fully utilize the 64-bit architecture.  You'd also need
to mark the package as a 64-bit package and any 64-bit components as such
within WiX.

Dana

On 2/5/07, Matthew Rowan <[EMAIL PROTECTED]> wrote:


Hi Robert,

What I have done is just setup conditions on the platform specific
components to install or not dependent on the operating system.

eg.

<Component Id="Comp" DiskId="1" Guid="xxxxx-3FD7-4DB0-9BBC-2FDF305DE466">
<!-- Do not install on 64-Bit Windows -->
<Condition>NOT VersionNT64</Condition>
<File Id="file1.dll" Source="..\file1.dll" />
</Component>

Regards,

-Matthew Rowan

On 2/6/07, Robert Randall <[EMAIL PROTECTED] > wrote:
>
>
> The answer to this may be obvious, but I can't seem to find any
> direction on
> how to support multiple target OSes from the same package; say x86 and
> x64
> (AMD64) versions.
>
> My hunch is there is a simple answer but I've not been able to find a
> sample
> project or How-To for this.
>
> Would one of the experts please advise on how to best handle this?  I
> have
> two separate and nearly identical packages now that produce two .msi
> files.
> One for x86 and one for x64.  I would prefer to have a single package
> (less
> room for mistakes that way).
>
> Thanks.
>
> Robert Randall
>
>
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to