简体   繁体   中英

Silent install of SQL Server 2014 Express

I write a program and I want to create an installation file that install my app and SQL Server 2014 Express with my instance name and install .net 3.5 in silent mode.

I'm trying to make my installation file with "Advanced installer" and "Installshield", but I can not install that silently.

If you know how I can do that, please help me.

Thanks

Thanks for you're answer. I can do this with Command Prompt . I use advance installer and I put SQL Server in Pre-install at Prerequisites and write in Install Command Lines

/q /IACCEPTSQLSERVERLICENSETERMS /ACTION=Install /FEATURES=SQLEngine /INSTANCENAME=SQLEXPRESS /UpdateEnabled=False /SECURITYMODE=SQL /SAPWD=Trv_Trv

Like this

if you want to show progress bar you should write /qs instead of /q if you wand to use SQL authentication you should use /SECURITYMODE=SQL and write passworl like /SAPWD=[You're password]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM