> i m having msi of my product which is working on all 32 bit windows
> versions
> now iwant to create msi which will wirk for bith 32 and 64bit os  or
> will
> work for 64 bit os. i have no idea what r the changes i m suppose to
> make in
> my msi.

You need to make a copy of your 32bit WiX source (you can't have a
single installer for both 32 bit and 64 bit).  In the 64 bit copy, you
need to change:

Product/@Id=new guid
Product/@UpgradeCode=new guid
Package/@Id=new guid
Package/@Platforms="x64"

For each component:

Component/@Guid=new guid
Component/@Win64="yes"

You may need to add Win64="yes" when referencing the registry too.



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to