From 4849fcc911f1d53541863d4b9034b996efbec5d0 Mon Sep 17 00:00:00 2001 From: "Alexander (Sasha) Nosov" Date: Tue, 13 Aug 2024 10:46:08 -0700 Subject: [PATCH] Fixed typos --- .../install-payg-sql-server/README.md | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/samples/manage/azure-arc-enabled-sql-server/install-payg-sql-server/README.md b/samples/manage/azure-arc-enabled-sql-server/install-payg-sql-server/README.md index 53f56d98..771490b0 100644 --- a/samples/manage/azure-arc-enabled-sql-server/install-payg-sql-server/README.md +++ b/samples/manage/azure-arc-enabled-sql-server/install-payg-sql-server/README.md @@ -5,7 +5,7 @@ This script installs a pay-as-you-go SQL Server instance on your machine and aut # Prerequisites - You have met the [onboarding prerequisites](https://learn.microsoft.com/sql/sql-server/azure-arc/prerequisites). -- You have downloded a SQL Server image file from the workspace provided by Microsoft technical support. To obtain it, open a support request using "Get SQL Installation Media" subcategory and specify the desired version and edition. +- You have downloaded a SQL Server image file from the workspace provided by Microsoft technical support. To obtain it, open a support request using "Get SQL Installation Media" subcategory and specify the desired version and edition. - You are logged in to the machine with an administrator account. - If you are installing SQL Server on Windows Server 2016, you have a secure TLS configuration as described below. @@ -19,21 +19,15 @@ To see if you need to make the change, run the command below from an elevated Po [Net.ServicePointManager]::SecurityProtocol ``` -If the result is `SSL3, Tls`, you need to fix the TLS version using one of the following options. - -__Option 1__: run the following command below from an elevated PowerShell prompt: -```PowerShell -[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls, [Net.SecurityProtocolType]::Tls11, [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Tls13 -``` - -__Option 2__: run these two commands from an elevated PowerShell prompt: +If the result is `SSL3, Tls`, you need to fix the TLS version by running the following commands. ```PowerShell Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord ``` -After running either of these command options, close and reopen PowerShell or reboot the machine (in case currently-running applications were referencing previous values). To verify that the changes were applied correctly, run this command again: +After running these commands, reboot the machine (in case currently-running applications were referencing previous values). To verify that the changes were applied correctly, run this command again: + ```PowerShell [Net.ServicePointManager]::SecurityProtocol ``` @@ -53,16 +47,16 @@ The script must be run in an elevated PowerShell session. It accepts the followi | **Parameter**                                         | **Value**                                                                       | **Description** | |:--|:--|:--| -|-AzureSubscriptionId|subscription_id|Required: Subscription id that will contain the Arc-enabled machime and Arc-enable SQL Server resources. That subscription will be billed for SQL Server software using a pay-as-you-go method. | -|-AzureResourceGroup |resource_group_name|Required: Resource group that will contain the Arc-enabled machime and Arc-enable SQL Server resource.| +|-AzureSubscriptionId|subscription_id|Required: Subscription id that will contain the Arc-enabled machine and Arc-enable SQL Server resources. That subscription will be billed for SQL Server software using a pay-as-you-go method. | +|-AzureResourceGroup |resource_group_name|Required: Resource group that will contain the Arc-enabled machine and Arc-enable SQL Server resource.| |-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.| |-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 pasdsword|Required if a custom service account is specified.| -|-IsoFolder|Folder path|Required. The folder contrainng the files downloaded from the workspace.| +|-AgtServerSvcPassword|SQL Agent service account password|Required if a custom service account is specified.| +|-IsoFolder|Folder path|Required. The folder containing the files downloaded from the workspace.| |-Proxy|HTTP proxy URL|Optional. Needed if your networks is configured with an HTTP proxy.| # Example