Fixed services default

This commit is contained in:
Alexander (Sasha) Nosov
2024-08-13 10:52:33 -07:00
committed by GitHub
parent 58d176fb22
commit e125b27e27
2 changed files with 2 additions and 2 deletions
@@ -52,7 +52,7 @@ The script must be run in an elevated PowerShell session. It accepts the followi
|-AzureRegion |region name| Required: the region to store the machuine and SQL Server meta-data. |
|-SqlServerInstanceName | name of the instance|Optional: the machine name will be used if not specified|
|-SqlServerAdminAccounts | SQL Server admin accounts | Optional. By default "BUILTIN\ADMINISTRATORS" will be used.|
|-SqlServerSvcAccount| SQL Server services account |Optional. By default "NT AUTHORITY\SYSTEM" will be used.|
|-SqlServerSvcAccount| SQL Server services account |Optional. By default "NT AUTHORITY\NETWORK SERVICE" will be used.|
|-SqlServerSvcPassword| SQL Server service account password| Required if a custom service account is specified.|
|-AgtServerSvcAccount|SQL Agent service account|Optional. By default "NT AUTHORITY\NETWORK SERVICE" will be used.|
|-AgtServerSvcPassword|SQL Agent service account password|Required if a custom service account is specified.|
@@ -10,7 +10,7 @@ param (
[Parameter (Mandatory=$false)]
[string]$SqlServerAdminAccounts = "BUILTIN\ADMINISTRATORS",
[Parameter (Mandatory=$false)]
[string]$SqlServerSvcAccount = "NT AUTHORITY\SYSTEM",
[string]$SqlServerSvcAccount = "NT AUTHORITY\NETWORK SERVICE",
[Parameter (Mandatory=$false)]
[string]$SqlServerSvcPassword,
[Parameter (Mandatory=$false)]