Hi,

The second time I recognize a strange problem. When I compile a bootstrapper 
project on my PC the compiled executable is not really starting. The process 
starts, but after that nothing happens, only the process stays in task manager. 
The strange, an executable build from the same sources with the same wix 
binaries on another machine is working well. Last time it worked after I 
uninstalled VS2012 RC since then I didn't installed anything. But yesterday I 
suddenly got the same behavior from one build to the other.

Best Regards
Ralph Bariz

LOG:
[1734:1844][2012-07-27T10:34:32]: Burn v3.6.3109.0, Windows v6.1 (Build 7601: 
Service Pack 1), path: D:\AVL\fOX\fOX\Main\Installer\AVL.fOX.Setup.exe, 
cmdline: '-l burn -burn.unelevated 
BurnPipe.{D34586E2-6A6C-4963-B258-3E444050951B} 
{7C813815-358B-40F4-B0CD-3292E533ECEC} 3788'
[1734:1844][2012-07-27T10:34:32]: Initializing string variable 
'InstallationPath' to value '[ProgramFilesFolder]\AVL fOX\V1.3.1\'
[1734:1844][2012-07-27T10:34:32]: Initializing string variable 
'Selected_Sql_Server' to value '(local)'
[1734:1844][2012-07-27T10:34:32]: Initializing string variable 'Database_Name' 
to value 'AVL_fOX'
[1734:1844][2012-07-27T10:34:32]: Initializing string variable 
'LicenseAgreement' to value 'http://go.microsoft.com/fwlink/?LinkID=188993'
[1734:1844][2012-07-27T10:34:32]: Error 0x8000ffff: Failed to find extension on 
log path: D:\AVL\fOX\fOX\Main\Installer\burn
[1734:1844][2012-07-27T10:34:32]: Error 0x8000ffff: Failed to open log.
[1734:1844][2012-07-27T10:34:32]: Variable: Database_Name = AVL_fOX
[1734:1844][2012-07-27T10:34:32]: Variable: InstallationPath = C:\Program Files 
(x86)\\AVL fOX\V1.3.1\
[1734:1844][2012-07-27T10:34:32]: Variable: LicenseAgreement = 
http://go.microsoft.com/fwlink/?LinkID=188993
[1734:1844][2012-07-27T10:34:32]: Variable: ProgramFilesFolder = C:\Program 
Files (x86)\
[1734:1844][2012-07-27T10:34:32]: Variable: Selected_Sql_Server = (local)
[1734:1844][2012-07-27T10:34:32]: Variable: WixBundleElevated = 1
[1734:1844][2012-07-27T10:34:32]: Error 0x8000ffff: Failed to run per-user mode.
[1734:1844][2012-07-27T10:34:32]: Exit code: 0x8000ffff, restarting: No


Bundle.wxs:
<?xml version="1.0" encoding="UTF-8"?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"; 
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
    
    <?include Variables.wxi ?>
        <Bundle Name="$(var.ProductName) V$(var.DisplayVersion) Setup" 
            AboutUrl="www.avl.com/fOX"
            Version="$(var.BuildVersion)" 
            Manufacturer="AVL List GmbH" 
            UpgradeCode="668de789-765e-4f32-b60b-4803ed408357"            
            HelpUrl="www.avl.com/fox"
            Copyright="AVL List GmbH 2009-2012"            
            DisableRepair="yes">
                <!--<BootstrapperApplicationRef 
Id="WixStandardBootstrapperApplication.RtfLicense" />-->
        
        <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost">
            <Payload SourceFile="$(var.UIDir)AVL.WPFBootStrapper.dll" 
Compressed="yes"/>
            <Payload 
SourceFile="$(var.UIDir)Microsoft.Deployment.WindowsInstaller.dll" 
Compressed="yes"/>
            <Payload SourceFile="$(var.UIDir)AVL.WPFBootStrapper.pdb" 
Compressed="yes"/>
            <Payload SourceFile="$(var.UIDir)AVL.WPFBootStrapper.dll.config" 
Compressed="yes" Name="BootstrapperCore.config"/>
            <Payload Id ="Eula_en.rtf" SourceFile="$(var.UIDir)Eula_en.rtf" 
Compressed="yes"/>
        </BootstrapperApplicationRef>
        
        <Variable Name="InstallationPath" Type="string" 
Value="[ProgramFilesFolder]\AVL fOX\V$(var.DisplayVersion)\"/>
        <Variable Name="Selected_Sql_Server" Type="string" Value="(local)"/>
        <Variable Name="Database_Name" Type="string" Value="AVL_fOX"/>
        <Variable Name="LicenseAgreement" Type="string" 
Value="!(wix.WixMbaPrereqLicenseUrl)"/>
        <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Microsoft SQL 
Server\Instance Names\SQL"
                             Variable="MSSQLSERVER" />
        <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Microsoft SQL 
Server\Instance Names\SQL"
                             Variable="SQLSERVERS32" />
        <util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Microsoft SQL 
Server\Instance Names\SQL"
                             Variable="SQLSERVERS64" Win64="yes"/>
        




        <Chain>
            <PackageGroupRef Id="NetFx40Redist"/>
            <PackageGroupRef Id="FSharp20"/>
            <PackageGroupRef Id="WindowsInstaller45"/>
            <!--<PackageGroupRef Id="NetFx35FullPackage"/>-->            
            <!--<PackageGroupRef Id="NetFx4FullPackage"/>-->
            <PackageGroupRef Id="PowerShell10"/>
            <PackageGroupRef Id="SQLServerExpress2008"/>

            <RollbackBoundary Vital="yes" />

            <PackageGroupRef Id="fOXRuntime"/>

            <RollbackBoundary Vital="yes" />

            <PackageGroupRef Id="fOXfSim"/>
            <PackageGroupRef Id="fOXfOpt"/>
            <!--<PackageGroupRef Id="fOXMapExpertBasic"/>-->
            <PackageGroupRef Id="fOXMapExpert"/>
            <!--<PackageGroupRef Id="fOXBMWBoschHydraulik"/>
            <PackageGroupRef Id="fOXBoschHydraulic"/>-->
            <PackageGroupRef Id="fOXSetpointTool"/>
            <PackageGroupRef Id="fOXStatTool"/>
                </Chain>
        </Bundle>
</Wix>
_________________________________________________________________________________________
AVL List GmbH, Firmensitz: Graz, Firmenbuchnummer: FN 53507M, Landesgericht 
fuer ZRS Graz


 



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to