Glad it is helping.

1) Your bundle (I assume) is placing one ARP entry, which you can control
with the Bundle attributes DisableModify, DisableRemove.  You can try to use
Driver/@AddRemovePrograms to suppress the driver entry.  I have not done
either.
http://wixtoolset.org/documentation/manual/v3/xsd/wix/bundle.html
http://wixtoolset.org/documentation/manual/v3/xsd/difxapp/driver.html 

2 & 3)  I was assuming that you are using VS IDE (or MSBuild) to build your
projects. If you were compiling your project from the command line you would
pass the -arch x64 switch to candle, to signal that the MSI should be
compiled as a 64 bit package.  The -arch flag also sets the Component flags
so in most cases you do not need to use the Component/@Win64.  When using a
VS project ( or more specifically MSBuild) if you can define the
InstallerPlatform MSBuild property which then sets the candle -arch flag for
you.  You should add this to the section of you wixproj which sets your x64
specific properties.  (I also set it to x86 in my x86 sections but since
that is the default it may not be needed.)  I don't do anything else when
creating a x64 msi project.

5) (Question 2,3,and 5 affect 4.)  I use <ProgramFiles6432>\MyCompany as the
location for any driver 

4) Yes the Feature has all component groups.
      <ComponentGroupRef Id="CP210x_setup" />
      <ComponentGroupRef Id="CP210x_x86" />
      <ComponentGroupRef Id="CP210x_x64" />
While on a x64 the x86 files would never be used (and vice versa) they are
needed in order for difx/pnp manager to validate the driver's signature. 





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Payload-not-copying-inf-tp7597985p7598035.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to