First off, sorry for all the questions!

I was able to figure out all my localization issues. I'm ready to deliver
the project except I can't get the bootstrapper to launch on Win & machines.
The only Win 7 machine it will run on is mine. Every other Win 7 machine in
the office gives me this error in the log:

[0CE8:0CEC][2014-06-19T17:40:22]i000: Loading managed bootstrapper
application.
[0CE8:0CEC][2014-06-19T17:40:22]e000: Error 0x8013141a: Failed to create the
managed bootstrapper application.
[0CE8:0CEC][2014-06-19T17:40:22]e000: Error 0x8013141a: Failed to create UX.
[0CE8:0CEC][2014-06-19T17:40:22]e000: Error 0x8013141a: Failed to load UX.
[0CE8:0CEC][2014-06-19T17:40:22]e000: Error 0x8013141a: Failed while running 
[0CE8:0CEC][2014-06-19T17:40:22]i410: Variable: DisplayVersion = 1.0.0.0
[0CE8:0CEC][2014-06-19T17:40:22]i410: Variable: WixBundleAction = 4

I assumed it was a .net issue but I have the exact same .net versions
installed on my machine as the other Win 7 comps. My MBA is a WPF app
targeted at .net 4.0. All the machines in my office are set up with 4.5 or
higher. If I remove .net from a machine and use the wix bundle to install
4.0, it installs fine but gives me the same error as above. Here is my
bundle code.

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
      xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";
      xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
      xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension";>
  <?define BundleVersion=1.0.0.0 ?>
  
 
  <Bundle Name="Client Package" Version="$(var.BundleVersion)"
Manufacturer="Mi" UpgradeCode="01C56548-DD67-425F-BA0C-875705F36327"
IconSourceFile="$(var.ICONNAME)">
      <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost" >
      <Payload
SourceFile="$(var.SolutionDir)Client_Wizard\BootstrapperCore.config"/>
      <Payload
SourceFile='!(wix.PreqbaThemeXml=SourceDir\Resources\mbapreq.thm)'
Compressed='yes' Name='mbapreq.thm'/>
      <Payload
SourceFile='!(wix.PreqbaThemeWxl=SourceDir\Resources\mbapreq.wxl)'
Compressed='yes' Name='mbapreq.wxl'/>
    <Chain>
      <PackageGroupRef Id='Netfx4Full' />
      <MsiPackage  SourceFile="$(var.TargetDir)ClientInstall.msi"
Id="Client"  Cache="no" Visible="no" ForcePerMachine="yes">
        <MsiProperty Name="INSTALLDIR" Value="[InstallFolder]"/>
      </MsiPackage>   
    </Chain>
  </Bundle>
 
  <Fragment>
    <Variable Name="InstallationPath" bal:Overridable="yes" />
    <WixVariable Id="PreqbaThemeXml" Value="Resources\mbapreq.thm" />
    <WixVariable Id="PreqbaThemeWxl" Value="Resources\mbapreq.wxl" />
    <WixVariable Id="WixMbaPrereqPackageId" Value="Netfx4Full" />
    <WixVariable Id="WixMbaPrereqLicenseUrl" Value="NetfxLicense.rtf" />
    <Variable Name="DisplayVersion" Value="$(var.BundleVersion)" />

    <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Net Framework
Setup\NDP\v4\Full" Value="Version" Variable="Netfx4FullVersion" />
    <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Net Framework
Setup\NDP\v4\Full" Value="Version" Variable="Netfx4x64FullVersion"
Win64="yes" />
    <util:RegistrySearch Root="HKCU"  Key="SOFTWARE\Microsoft\PFE\Client"
Value="Client" Variable="ClientExists" />

    <PackageGroup Id="Netfx4Full">
      <ExePackage Id="Netfx4Full" Cache="no" PerMachine="yes"
Permanent="yes" Vital="yes" Compressed="no"
                  Name="..\..\DotNetInstallers\dotNetFx40_Full_x86_x64.exe"
                 
DownloadUrl="http://go.microsoft.com/fwlink/?LinkID=402630";
                  DetectCondition="Netfx4FullVersion OR
Netfx4x64FullVersion">
      </ExePackage>
    </PackageGroup>


There has to be some kind of .net conflict here. 

Also, where is the best place to report bugs? I found a few issues with
copying files and MBA preq installer localization.

Any help you can offer is much appreciated!




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-will-launch-in-Win-8-but-not-Win-7-tp7595374.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to