SQL Server 2012 Unattended Installation

252 Views Asked by At

I am trying to install SQL Server 2012 Express from command line. Here is a test example:

setup.exe /QS /ACTION=install /INSTANCENAME="UnattendedCmd123" 
          /IACCEPTSQLSERVERLICENSETERMS /FEATURES=SQLENGINE,SSMS 
          /SQLSYSADMINACCOUNTS="BUILTINADMINISTRATORS"

This should work but it doesn't install (no error) I checked the summary in the logs and it shows:

User Input Settings:

  ACTION:                        RunRules
  CONFIGURATIONFILE:             
  ENU:                           true
  FEATURES:                      SQLENGINE, SSMS
  HELP:                          false
  IACCEPTSQLSERVERLICENSETERMS:  false
  INDICATEPROGRESS:              false
  INSTANCENAME:                  UNATTENDEDCMD123
  PID:                           *****
  QUIET:                         false
  QUIETSIMPLE:                   true
  RULES:                         GlobalRules
  UIMODE:                        AutoAdvance
  X86:                           false

IACCEPTSQLSERVERLICENSETERMS:  false

Why is it coming through as false when I clearly have the parameter?

0

There are 0 best solutions below