An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
Hello @Ik
Thank you for reaching out to Microsoft Q&A. We apologize for the inconvenience caused by this issue.
Based on the information you provided, we would like to gather some additional details and perform a few validation steps. If you have PowerShell access, could you please run the following commands and share the results?
Key PowerShell Commands for Orphaned Restore Points collections cleanup:
1.** Connect to Azure and set the **subscription
Connect-AzAccount
Set-AzContext -SubscriptionId "<SubscriptionID>"
2.** Verify the Restore Point Collection **exists
Get-AzRestorePointCollection `
-ResourceGroupName "AzureBackupRG_canadacentral_1" `
-Name "AzureBackup_vm-monitor-test_862018736035475"
3.** List restore points within the **collection
$rpc = Get-AzRestorePointCollection `
-ResourceGroupName "AzureBackupRG_canadacentral_1" `
-Name "AzureBackup_vm-monitor-test_862018736035475"
$rpc.RestorePoints
4.** Attempt to delete individual restore **points
Remove-AzRestorePoint `
-ResourceGroupName "AzureBackupRG_canadacentral_1" `
-RestorePointCollectionName "AzureBackup_vm-monitor-test_862018736035475" `
-Name "<RestorePointName>"
5.** Attempt deletion of the Restore Point Collection via ARM REST **API
$resourceId = "/subscriptions/<subscription-id>/resourceGroups/AzureBackupRG_canadacentral_1/providers/Microsoft.Compute/restorePointCollections/AzureBackup_vm-monitor-test_862018736035475"
Invoke-AzRestMethod `
-Method DELETE `
-Path "$resourceId?api-version=2023-03-01"
6.** Check for remaining restore point **resources
Get-AzResource `
-ResourceGroupName "AzureBackupRG_canadacentral_1" |
Where-Object {$_.ResourceType -match "restorePoint"}
7.** Export resource details for support **escalation
Get-AzResource `
-ResourceGroupName "AzureBackupRG_canadacentral_1" `
-Name "AzureBackup_vm-monitor-test_862018736035475" `
-ResourceType "Microsoft.Compute/restorePointCollections" |
ConvertTo-Json -Depth 20 |
Out-File C:\Temp\RestorePointCollection.json
8.** Collect failed operation logs and correlation **IDs
Get-AzLog `
-ResourceGroupName "AzureBackupRG_canadacentral_1" `
-DetailedOutput |
Sort-Object EventTimestamp -Descending |
Select-Object -First 20
Once you have executed the commands, please share the outputs, especially any error messages, failed operations, activity logs, or correlation IDs. This information will help us investigate the orphaned Restore Point Collection further and determine the appropriate next steps.
We appreciate your cooperation and look forward to your update. Thank you.
Regards,
Venkat.M