My program needs SQL Server 2012 Express. So I added "Microsoft SQL Server 2012 Express" in feature-based as you can see here :
I need to install the SQL Server Express in the background without any wizard installation so I added these parameters to my setup file :
SQLEXPR_x64_ENU.exe /qs /ACTION=Install /FEATURES=SQLENGINE
/INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM"
/SQLSYSADMINACCOUNTS="Builtin\Administrators"
/AGTSVCACCOUNT="NT AUTHORITY\Network Service"
I added these parameters to install command lines textboxes. As you can see here:
But when I build the project and install the setup file, SQL Server Express doesn't get installed - why?
Best regards