An Azure backup service that provides built-in management at scale.
Hello Brian Bollard, Thanks for the update. You have an orphaned Restore Point Collection in Azure. The VM and resource group it belonged to are already deleted, but the RPC remains. Attempts to delete it fail with the generic error "Failed to delete restore point collection 'AzureBackup_moodle-server_388412851'"Restore Point Collection deletion fails because of leftover locks, backup policies, or active shared access signatures (SAS) tied to disk restore points.
To check for Locks:
- In Azure Portal > Go to:
- Subscription > Settings > Locks
- Resource Group > Settings > Locks
- Restore Point Collection > Settings > Locks
- Delete any Delete or ReadOnly locks.
Lock your Azure resources to protect your infrastructure - Azure Resource Manager | Microsoft Learn
Troubleshoot restore point failures - Azure Virtual Machines | Microsoft Learn
Clean Recovery Services Vault: If The error message suggests that there is a restore point collection associated with your Recovery Services Vault that you are trying to delete. If there are recovery points associated with the collection, it cannot be deleted until the dependencies are removed from Recovery Services Vault
Before deleting the Recovery Services Vault ensure that all associated backup policies for the virtual machine within the Recovery Services Vault have been deleted.
- Navigate to the Recovery Services Vault that protected the VM.
- Under Backup Items > Azure Virtual Machine, ensure the VM entry is gone.
- Delete any backup policies linked to that VM.
Delete a Microsoft Azure Recovery Services Vault - Azure Backup | Microsoft Learn
After locks and policies are cleared, retry deletion in the portal or via CLI.
You can try to delete an orphan restore point collection in Azure Portal manually. Here are the steps you can follow:
- In the Azure Portal > Go to All resources.
- Search for the resource group named
AzureBackupRG(specific to your region). - Inside the resource group, click Show hidden types to reveal hidden backup resources.
- Locate the restore point collection:
AzureBackup_moodle-server_388412851. - Select it and click Delete.
If deletion times out, retry a couple of times this is expected when many restore points exist.
Hope this helps! Let me know if you have other questions. Thanks