cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
avazehkarimian
Level 2

Silent Setup Including SQL Server 2008 Express

Hi Dears,

I want to create a silent setup for my Applications, which needs Microsoft SQL Server 2008 Express as Prerequisite. So I've Checked it in :
Installation Designer -> Application Data -> Redistributables

Then i set it's properties by " Edit Prerequisite " window. in the "Application To Run " tab , in the command line i put this command :

/ACTION="Install" /FEATURES="SQLENGINE" /INSTANCENAME="SAFASQLEXPRESS" /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /SECURITYMODE="SQL" /SAPWD="1" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS"


in the command for silent mode area i put: /s or /quiet

but when i run my setup, it opens the windows for installing sql.
what should i do not to show sql setup's windows to the user ??


with Best Regards,
Avazeh
Labels (1)
0 Kudos
(1) Reply
WindChaser
Level 4

You have to put either /Q or /QS.

Refer to http://msdn.microsoft.com/en-us/library/ms144259.aspx .

Hope this helps.
0 Kudos