Hello,

I have made a Bootstrapper-project with WiX 3.8.
As part of the prerequisites SQL Server LocalDb shall be Installed.
At first i tried to install it with SQL Server Express by adding it to the
features like that:

            <ExePackage Id="SqlServerExpressX86"
                        DisplayName="SQL Server Express x86"
                        Cache="yes"
                        Compressed="yes"
                        PerMachine="yes"
                        Permanent="yes"
                        Vital="yes"
                       
SourceFile=".\Prerequisites\sqlServerExpress\SQLEXPR_x86_DEU.exe"
                        InstallCommand='/qs /ACTION="Install"
/IACCEPTSQLSERVERLICENSETERMS /ENU="False" /UpdateEnabled="True"
/FEATURES="SQLENGINE,FULLTEXT,BOL,LOCALDB" [...]'
       InstallCondition="NOT ExpressX86 AND NOT VersionNT64" />

But this doesn't work, which means SQL Server LocalDB is not installed.

Then i tried it with the adding of SqlLocalDb.msi to the prerequisites.

            <MsiPackage Id="SqlServerLocalDb64bit"
                        Cache="yes"
                        Compressed="yes"
                        Permanent="yes"
                        Vital="yes"
                        ForcePerMachine="yes"
                        SuppressSignatureVerification="yes"
                        SourceFile=".\Prerequisites\sqlLocalDb\SqlLocaLDB
(64 bit).MSI"
                        InstallCondition="NOT LocalDbInstalled AND
VersionNT64" />


But each time the bootstrapper chain is starting the installation of the
MSI, i'm getting an error, that the parameter IACCEPTSQLLOCALDBLICENSETERMS
have to be set to YES.
But in which property shall i set that?

Thanks in advance!
Patrick




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-install-SqlLocalDb-msi-in-Bootstrapper-tp7598322.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