How to install SQL Server 2014 Express through the command line on a new Windows 7 machine?
I tried the following command line; I did not see any running or installed SQL services, although there were no errors. So what's wrong with that? Any idea?
SQLEXPRESS.EXE /qs /ACTION=Install /FEATURES=SQLEngine
/INSTANCENAME=SQLEXPRESS
/SQLSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
/SQLSVCPASSWORD="STR0NGP@$$"
/SQLSYSADMINACCOUNTS="NT AUTHORITY\NETWORK SERVICE"
/AGTSVCACCOUNT="NT AUTHORITY\Network Service"
/TCPENABLED=0 /X86="True" /SQMREPORTING="False"
/ISSVCSTARTUPTYPE="Automatic"
/ASCOLLATION="Latin1_General_CI_AS"
/SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
/RSINSTALLMODE="FilesOnlyMode"
/IACCEPTSQLSERVERLICENSETERMS
source
share