Skip to content

Commit 5150557

Browse files
authored
Merge pull request #110751 from MashaMSFT/patch-94
fixing noagent
2 parents f332869 + b0bdd6b commit 5150557

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-machines/windows/sql/virtual-machines-windows-sql-register-with-resource-provider.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ To register your SQL Server VM directly in full mode (and possibly restart your
173173

174174
SQL Server 2008 and 2008 R2 installed on Windows Server 2008 (_not R2_) can be registered with the SQL VM resource provider in the [NoAgent mode](#management-modes). This option assures compliance and allows the SQL Server VM to be monitored in the Azure portal with limited functionality.
175175

176-
Specify either `AHUB`, `PAYG`, or `DR` as the **sqlLicenseType**, and either `SQL2008-WS2008` or `SQL2008R2-WS2008` as the **sqlImageOffer**.
176+
Specify either `AHUB`, `PAYG`, or `DR` as the **sqlLicenseType**, and `SQL2008-WS2008` or `SQL2008R2-WS2008`as the **sqlImageOffer**.
177177

178-
To register your SQL Server 2008 or 2008 R2 instance on Windows Server 2008 instance, use the following Az CLI or PowerShell code snippet:
178+
To register your SQL Server 2008 or 2008 R2 on Windows Server 2008 instance, use the following Az CLI or PowerShell code snippet:
179179

180180

181181
# [AZ CLI](#tab/bash)
@@ -185,7 +185,7 @@ Register your SQL Server 2008 VM in NoAgent mode with the Az CLI:
185185
```azurecli-interactive
186186
az sql vm create -n sqlvm -g myresourcegroup -l eastus |
187187
--license-type PAYG --sql-mgmt-type NoAgent
188-
--image-sku Enterprise --image-offer SQL2008-WS2008R2
188+
--image-sku Enterprise --image-offer SQL2008-WS2008
189189
```
190190

191191

@@ -194,7 +194,7 @@ Register your SQL Server 2008 R2 VM in NoAgent mode with the Az CLI:
194194
```azurecli-interactive
195195
az sql vm create -n sqlvm -g myresourcegroup -l eastus |
196196
--license-type PAYG --sql-mgmt-type NoAgent
197-
--image-sku Enterprise --image-offer SQL2008R2-WS2008R2
197+
--image-sku Enterprise --image-offer SQL2008R2-WS2008
198198
```
199199

200200
# [PowerShell](#tab/powershell)

0 commit comments

Comments
 (0)