Skip to content

Commit 41697b1

Browse files
Merge pull request #9743 from MicrosoftDocs/main
Auto Publish – main to live - 2025-09-18 10:00 UTC
2 parents 11bb595 + da3fd64 commit 41697b1

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)