Skip to content

Commit da3fd64

Browse files
author
Simonx Xu
authored
Merge pull request #9737 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/SupportArticles-docs (branch main)
2 parents d5e6686 + 5aa0f2b commit da3fd64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

support/azure/virtual-machines/linux/removing-extensions-netapp-cvo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ Cloud Volumes ONTAP doesn't support Azure VM extensions because extensions affec
4343
> Starting in BlueXP 3.9.54, NetApp enforces this pre-existing limitation as a notification in BlueXP.
4444
4545
## Resolution
46-
To resolve this issue, run the following script on every VM:
46+
To resolve this issue, run the following script against any affected NetApp CVO VMs in PowerShell:
4747

4848
```powershell
4949
$subscriptionId = (Get-AzContext).Subscription.Id
5050
$resourceGroup = "RGname"
5151
$vmName = "VMName"
5252
$apiVersion = "2025-04-01"
53-
$uri = "https://management.azure.com/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.Compute/virtualMachines/$vmName`?api-version=$apiVersion"
53+
$uri = "https://management.azure.com/subscriptions/${subscriptionId}/resourceGroups/${resourceGroup}/providers/Microsoft.Compute/virtualMachines/${vmName}?api-version=${apiVersion}"
5454
$response = Invoke-AzRestMethod -Method GET -Uri $uri
5555
$vmModel = $response.Content | ConvertFrom-Json
5656
$vmModel.resources = @()

0 commit comments

Comments
 (0)