Hello Richard
Thank you for posting your query on Microsoft Q&A platform.
The resource group AzureBackupRG_northeurope_1 is system‑created and managed by Azure Backup. Azure Backup automatically creates this resource group to store VM Restore Point Collections (Microsoft.Compute/restorePointCollections) used for Instant Restore.
Azure blocks deletion of a resource group when:
- Any restore point collections still exist, even if
- the VM is deleted
- the Recovery Services Vault is deleted
- The restore point collections are in a stale / orphaned backend state
This behavior is by design and is enforced by the Azure Resource Manager control plane. It is not a permissions issue and not a portal bug.
Restore point collections must be deleted before deleting the AzureBackupRG resource group. If they are orphaned, backend cleanup is required.
Please have a look into below provided resolution:
Step 1 – Attempt supported manual deletion
Restore point collections are hidden resources and must be deleted explicitly.

Azure PowerShell (supported method):
Remove-AzResource `
-ResourceGroupName AzureBackupRG_northeurope_1 `
-ResourceType Microsoft.Compute/restorePointCollections `
-Name AzureBackup_AZ-DC01_299068976700980 `
-Force
Repeat for each restore point collection listed in the error message.
If all restore point collections are deleted successfully, the resource group deletion will succeed.
Restore point collections are separate resources and must be removed explicitly.
Step 2 – When deletion fails (common in this scenario)
If the restore point collection cannot be deleted even with PowerShell, it means:
- The restore point references non‑existent disks
- The Recovery Services Vault has already been deleted
- The restore point collection exists only as orphaned backend metadata
In this case Azure Portal cannot delete it, PowerShell / CLI cannot delete it and Role changes also does not help
Microsoft Support must perform backend cleanup
Open an Azure Support ticket:
Category: Azure Backup → Restore / Cleanup issue
State clearly:
- Resource Group:
AzureBackupRG_northeurope_1
- Resource type:
Microsoft.Compute/restorePointCollections
- Error:
ResourceGroupDeletionBlocked
- Condition: Orphaned restore point collections after VM and Recovery Services Vault deletion
Microsoft Support will remove the orphaned restore point metadata from the backend, after which the resource group can be deleted.
References:
Azure Backup creates AzureBackupRG resource groups for restore points https://learn.microsoft.com/azure/backup/backup-azure-delete-vault
Restore point collections are independent resources and must be deleted explicitly https://learn.microsoft.com/azure/virtual-machines/manage-restore-points
If the suggested resolution resolved the issue, kindly consider marking the answer as "Upvote" it. This helps other community members who may encounter a similar issue in the future.
Thanks,
Suchitra.