Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. ; SQL Server Configuration File
  2. [OPTIONS]
  3. ; Specifies a Setup work flow, like INSTALL, UNINSTALL, or UPGRADE. This is a required parameter.
  4.  
  5. ACTION="Install"
  6.  
  7. ; Specifies features to install, uninstall, or upgrade. The lists of features include SQLEngine, FullText, Replication, AS, IS, and Conn.
  8.  
  9. FEATURES=SQLENGINE,FullText,Replication,AS,IS,Conn
  10.  
  11. ; Specify a default or named instance. MSSQLSERVER is the default instance for non-Express editions and SQLExpress for Express editions. This parameter is required when installing the SQL Server Database Engine (SQL), or Analysis Services (AS).
  12.  
  13. INSTANCENAME="MSSQLSERVER"
  14.  
  15. ; Specify the Instance ID for the SQL Server features you have specified. SQL Server directory structure, registry structure, and service names will incorporate the instance ID of the SQL Server instance.
  16.  
  17. INSTANCEID="MSSQLSERVER"
  18.  
  19. ; Account for SQL Server service: Domain\User or system account.
  20.  
  21. SQLSVCACCOUNT="NT Service\MSSQLSERVER"
  22.  
  23. ; Windows account(s) to provision as SQL Server system administrators.
  24.  
  25. SQLSYSADMINACCOUNTS="<DomainName\UserName>"
  26.  
  27. ; The name of the account that the Analysis Services service runs under.
  28.  
  29. ASSVCACCOUNT= "NT Service\MSSQLServerOLAPService"
  30.  
  31. ; Specifies the list of administrator accounts that need to be provisioned.
  32.  
  33. ASSYSADMINACCOUNTS="<DomainName\UserName>"
  34.  
  35. ; Specifies the server mode of the Analysis Services instance. Valid values are MULTIDIMENSIONAL, POWERPIVOT or TABULAR. ASSERVERMODE is case-sensitive. All values must be expressed in upper case.
  36.  
  37. ASSERVERMODE="MULTIDIMENSIONAL"
  38.  
  39. ; Optional value, which specifies the state of the TCP protocol for the SQL Server service. Supported values are: 0 to disable the TCP protocol, and 1 to enable the TCP protocol.
  40.  
  41. TCPENABLED=1
  42.  
  43. ;Specifies acceptance of License Terms
  44.  
  45. IAcceptSQLServerLicenseTerms="True"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement