Only one log for the install.

I have narrowed the issue down to one of the MSI packages the burn
application installs. Without this MSI it operates fine.

Bundle: (it's driver1 that causes the issue)
<?xml version="1.0" encoding="UTF-8"?>

<?include ..\..\files\ProductVersion.wxi ?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
        <Bundle Name="PixeLINK Camera Kit"
Version="$(var.ProductVersion)" Manufacturer="PixeLINK"
UpgradeCode="{C4E4BB37-4EBB-4828-BA07-54B3147B4C86}"
Condition="VersionNT >= v5.01" HelpTelephone="613-247-1211"
HelpUrl="http://pixelink.com/support.aspx";
IconSourceFile="Resource\PixeLINK.ico"
UpdateUrl="http://pixelink.com/support/download-search.aspx";>
    <BootstrapperApplicationRef
Id="WixExtendedBootstrapperApplication.HyperlinkLicense">
      <Payload
SourceFile="Resource\PixeLINK_Software_License_Agreement_(EULA)v1.htm"
/>
      <Payload SourceFile="Resource\LogoSide.png" />
      <Payload SourceFile="Resource\LogoSmall.png" />
      
    </BootstrapperApplicationRef>
    <WixVariable Id="WixExtbaLicenseUrl"
Value="PixeLINK_Software_License_Agreement_(EULA)v1.htm" />
    <WixVariable Id="WixExtbaThemeXml"
Value="Resource\HyperlinkTheme2.xml" />
    <WixVariable Id="WixExtbaThemeWxl"
Value="Resource\HyperlinkTheme2.wxl" />
    
    <Variable Name="InstallFolder" Type="string"
Value="[ProgramFilesFolder]PixeLINK" />
    <Variable Name="MyCheckbox1" Type="numeric" Value="1"/>

    <Update
Location="http://www.files.pixelink.com/update/Capture/index.php?version
=$(var.ProductVersion)"/>
                <Chain DisableSystemRestore="yes">
      <PackageGroupRef Id="Netfx20" />
      
      
      <MsiPackage Id='CameraKit' SourceFile='output\Camera_Kit.msi'
Name='Camera_Kit' Visible='no' Compressed='yes' ForcePerMachine='yes'>
        <MsiProperty Name='INSTALLLOCATION' Value="[InstallFolder]"/>
        <MsiProperty Name='DESKTOP' Value="[MyCheckbox1]"/>
      </MsiPackage>
      <MsiPackage Id='driver1' SourceFile='output\Driversx86.msi'
Name='Driversx86' InstallCondition='Not VersionNT64' Visible='no'
Compressed='yes' ForcePerMachine='yes'>
        <MsiProperty Name='INSTALLLOCATION' Value="[InstallFolder]"/>
      </MsiPackage>
      <MsiPackage Id='driver2' SourceFile='output\Driversx64.msi'
Name='Driverx64' InstallCondition='VersionNT64' Visible='no'
Compressed='yes' ForcePerMachine='yes'>
        <MsiProperty Name='INSTALLLOCATION' Value="[InstallFolder]"/>
      </MsiPackage>
      <MsiPackage Id='CRT' SourceFile='output\CRT2008.msi'
Name='CRT2008' Visible='no' Compressed='yes' ForcePerMachine='yes' >
        <MsiProperty Name='INSTALLLOCATION' Value="[InstallFolder]"/>
      </MsiPackage>

                </Chain>
        </Bundle>
<Fragment>
    <util:RegistrySearch Root="HKLM"
Key="SOFTWARE\Microsoft\.NETFramework\policy" Result="exists"
Id="Netfx20Version" Variable="Netfx20Version" />

    <PackageGroup Id="Netfx20">
      <ExePackage Id="Netfx20"
        Cache="no"
        Compressed="yes"
        PerMachine="yes"
        Permanent="yes"
        Vital="yes"
        Name="dotnetfx.exe"
        SourceFile="..\..\files\dotnetfx.exe"
        InstallCommand="/q:a /c:'install /l /q'"       
        InstallCondition="NOT Netfx20Version OR (Netfx20Version &lt;
v2.0.50727.5420)"
        DetectCondition="Netfx20Version AND (Netfx20Version &gt;=
v2.0.50727.5420)">
        
      </ExePackage>
    </PackageGroup>
  </Fragment>
</Wix>


MSI code: 
<?xml version="1.0" encoding="utf-8"?>
<?include ..\..\files\ProductVersion.wxi ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
    <Product Id="{002B6075-AD51-4B1A-AF60-18862AA87374}" Name="PixeLINK
Camera Drivers 32-bit" Language="1033" Version="$(var.ProductVersion)"
Manufacturer="PixeLINK"
UpgradeCode="{A9149D27-E3D2-4636-83AB-CCB5E2A165A4}">
        <Package Description="Driver Install for x86 systems"
Comments="Driver Install for x86 systems" InstallerVersion="300"
Compressed="yes" Platform="x86" InstallPrivileges="elevated"
InstallScope="perMachine"/>

      <MajorUpgrade Schedule="afterInstallValidate"
DowngradeErrorMessage="A newer version of this application is already
installed."/>

      <Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
        <Directory Id="TARGETDIR" Name="SourceDir">            
                <Directory Id="INSTALLLOCATION" Name="PixeLINK">
                    <Merge Id="FWx86" Language="1033" DiskId="1"
SourceFile="output\FWx86.msm" />
                    <Merge Id="GigEx86" Language="1033" DiskId="1"
SourceFile="output\GiGEx86.msm" />
                    <Merge Id="USBx86" Language="1033"
SourceFile="output\USBx86.msm" DiskId="1" />
                    <Merge Id="Common" Language="1033" DiskId="1"
SourceFile="output\Commonx86.msm" />
                </Directory>
            </Directory>
        
        <Feature Id="FWx86" Title="FWx86" Level="1">
            <MergeRef Id="FWx86" />
        </Feature>
      <Feature Id="USBx86" Title="USBx86" Level="1">
        <MergeRef Id="USBx86" />
      </Feature>
      <Feature Id="GigEx86" Title="GigEx86" Level="1">
        <MergeRef Id="GigEx86" />
      </Feature>
      <Feature Id="Common" Title="Common" Level="1">
        <MergeRef Id="Common" />
      </Feature>           
        <UI />
    </Product>
</Wix>

Thank you,
Michael Ogilvie

-----Original Message-----
From: Neil Sleightholm [mailto:n...@x2systems.com] 
Sent: Wednesday, March 20, 2013 3:35 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Bundle install on Windows XP 32-bit

The two logs you posted earlier seem to be from different installs,
Camera_Kit.exe and SDK_Kit.exe. When this happen do you get two
consecutive logs from the same install?

-----Original Message-----
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com]
Sent: 20 March 2013 18:54
To: General discussion for Windows Installer XML toolset.
Cc: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Bundle install on Windows XP 32-bit

I reverted back to 3.6 and I still see this issue, so it's nothing to so
with the wix version.  

Any ideas on why it would automatically restart the exe when the install
finishes?

I am using the custom ba from Neil S. 

Thank you,

Michael Ogilvie
Application Support Specialist
1900 City Park Drive Ottawa, ON K1J 1A3
Tel: 613-247-1211 ext 242 | Cell: 613-302-9844 http://www.Pixelink.com

Sent from my iPhone

On 2013-03-19, at 4:32 PM, "Michael Ogilvie"
<michael.ogil...@pixelink.com> wrote:

> This does not seem to happen with Wix 3.6 only 3.7
> 
> 
> Thank you,
> 
> 
> -----Original Message-----
> From: Rob Mensching [mailto:r...@robmensching.com]
> Sent: Tuesday, March 19, 2013 3:13 PM
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Bundle install on Windows XP 32-bit
> 
> What does the log file show?
> 
> 
> On Tue, Mar 19, 2013 at 11:49 AM, Michael Ogilvie < 
> michael.ogil...@pixelink.com> wrote:
> 
>> When I run my exe install on a Windows XP machine the bundle will 
>> launch itself after the install.
>> 
>> 
>> 
>> So when the install completes I have two windows, one says close and 
>> the other has "repair", uninstall" and "close"
>> 
>> 
>> 
>> This does not happen on Vista, Win7 or 8
>> 
>> 
>> 
>> 
>> 
>> Thank you,
>> 
>> Michael Ogilvie
>> 
>> 
>> ---------------------------------------------------------------------
>> -
>> -------- Everyone hates slow websites. So do we.
>> Make your web apps faster with AppDynamics Download AppDynamics Lite 
>> for free today:
>> http://p.sf.net/sfu/appdyn_d2d_mar
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
> ----------------------------------------------------------------------
> --
> ------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite 
> for free today:
> http://p.sf.net/sfu/appdyn_d2d_mar
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> ----------------------------------------------------------------------
> -------- Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics Download AppDynamics Lite 
> for free today:
> http://p.sf.net/sfu/appdyn_d2d_mar
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------
------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for
free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------
------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for
free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to