Hey Phil,

I am not using <RollbackBoundry/> at all
I have 1 EXE (SQL Server Express 2012 CU2) and 1 MSI only (but I have to
MsiPackage’s one for a silent install and one for non silent)

The only PackageGroupRef I have is for .NET

i.e.

   <Chain>
      <PackageGroupRef Id="Netfx4Full"/>
      
      <ExePackage Id="A_SQLExpressx64"
                  DisplayName="Microsoft® SQL Server® 2012 - Express Edition
x64"
                 
SourceFile="$(var.scSourcePath)\PreReqs\SQLEXPR_x64_ENU.exe"
                  Name="RedistReporting\SQLEXPR_x64_ENU.exe"
                  InstallCommand="/QUIET /IACCEPTSQLSERVERLICENSETERMS=1
/ACTION=INSTALL /FEATURES=SQLENGINE /INSTANCENAME=SQL_COMPANY /HIDECONSOLE
/SKIPRULES=RebootRequiredCheck /SQLSVCSTARTUPTYPE=Automatic
/AGTSVCSTARTUPTYPE=Automatic /SQLSVCACCOUNT=&quot;NT AUTHORITY\NETWORK
SERVICE&quot; /AGTSVCACCOUNT=&quot;NT AUTHORITY\NETWORK SERVICE&quot;
/ASSYSADMINACCOUNTS=BUILTIN\Administrators
/SQLSYSADMINACCOUNTS=BUILTIN\Administrators /BROWSERSVCSTARTUPTYPE=Disabled
/ADDCURRENTUSERASSQLADMIN=True /TCPENABLED=1"
                  InstallCondition="VersionNT64 AND Not SQL_TITUS_Exist AND
SQLEXPRESSRADIOBUTTON = 1"
                  Cache="no"
                  Compressed="no"
                  PerMachine="yes"
                  Permanent="yes"/>

      <MsiPackage Id="MainInstall_NoGUI"
                  DisplayName="$(var.ProductName)"
                  DisplayInternalUI="no"
                 
SourceFile="$(env.TLSharedServices)\Installers\Reporting_Service_Setup.msi"
                  Name="RedistReporting\Reporting_Service_Setup.msi"
                  InstallCondition="EXISTINGSQLRADIOBUTTON = 0"
                  Visible="no"
                  Cache="no"
                  Compressed="no"
                  Permanent="no">
        <MsiProperty Name="SERVICESLOGLEVEL" Value="[SERVICESLOGLEVEL]"/>
        <MsiProperty Name="MSI_RUN_FROM_EXE" Value="[MSI_RUN_FROM_EXE]"/>
        <MsiProperty Name="EXISTINGSQLRADIOBUTTON"
Value="[EXISTINGSQLRADIOBUTTON]"/>
        <MsiProperty Name="SQLSERVEREXPRESS_INSTANCE" Value="\SQL_COMPANY"/>
        <MsiProperty Name="WEF_CONFIG_FILE" Value="[WEF_CONFIG_FILE]"/>
        <MsiProperty Name="EVENT_LOG_FILE_SIZE"
Value="[EVENT_LOG_FILE_SIZE]"/>
      </MsiPackage>

      <MsiPackage Id="MainInstall_GUI"
                  DisplayName="$(var.ProductName)"
                  DisplayInternalUI="yes"
                 
SourceFile="$(env.TLSharedServices)\Installers\Reporting_Service_Setup.msi"
                  Name="RedistReporting\Reporting_Service_Setup.msi"
                  InstallCondition="EXISTINGSQLRADIOBUTTON = 1"
                  Visible="no"
                  Cache="no"
                  Compressed="no"
                  Permanent="no">
        <MsiProperty Name="SERVICESLOGLEVEL" Value="[SERVICESLOGLEVEL]"/>
        <MsiProperty Name="MSI_RUN_FROM_EXE" Value="[MSI_RUN_FROM_EXE]"/>
        <MsiProperty Name="EXISTINGSQLRADIOBUTTON"
Value="[EXISTINGSQLRADIOBUTTON]"/>
        <MsiProperty Name="WEF_CONFIG_FILE" Value="[WEF_CONFIG_FILE]"/>
        <MsiProperty Name="EVENT_LOG_FILE_SIZE"
Value="[EVENT_LOG_FILE_SIZE]"/>
      </MsiPackage>
              </Chain>
Then the .NET package:

<PackageGroup Id="Netfx4Full">
      <ExePackage
        Id="Netfx4Full"
        DisplayName="Microsoft .NET Framework 4.0"
        Cache="no"
        Compressed="no"
        PerMachine="yes"
        Permanent="yes"
        Protocol="none"
        Vital="yes"
        SourceFile="$(var.scSourcePath)\PreReqs\dotNetFx40_Full_x86_x64.exe"
        Name="RedistReporting\dotNetFx40_Full_x86_x64.exe"
        InstallCommand="/passive /norestart"
        DetectCondition="Netfx4FullVersion AND (NOT VersionNT64 OR
Netfx4x64FullVersion)" />
    </PackageGroup>

Steve




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Upgrade-issue-tp7599324p7599336.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to