An Azure backup service that provides built-in management at scale.
Hello Admin_Kumaran_Narayanan,
Thank you for reaching out to the Microsoft Q&A forum.
When investigated you it looks like you’re hitting the “This VM backup cannot be configured using Standard policy – please use Enhanced Policy” error (UserErrorThisVMBackupIsSupportedUsingEnhancedPolicy). That usually means your VM has a configuration that only Enhanced policies support (for example Trusted Launch VMs, Premium SSD v2 or Ultra Disks, multi-disk crash-consistent snapshots, etc.). Here’s how you can get past it:
Verify why your VM needs Enhanced
- Trusted Launch VMs, Ultra or Premium SSD v2 disks, or any multi-disk crash-consistent requirement all force Enhanced.
- Standard policies don’t support these, so you must switch to Enhanced.
Create an Enhanced backup policy
Portal:
- Go to your Recovery Services vault → Backup policies → + Add.
- On “Select policy type” pick Azure Virtual Machine, then choose Enhanced.
- Configure your backup schedule (Hourly/Daily/Weekly), instant-restore retention (1–30 days), and your vault-tier retention.
- Click Create.
PowerShell snippet:
# Example: hourly Enhanced policy
$sch = Get-AzRecoveryServicesBackupSchedulePolicyObject -PolicySubType Enhanced -WorkloadType AzureVM -ScheduleRunFrequency Hourly
$ret = Get-AzRecoveryServicesBackupRetentionPolicyObject -WorkloadType AzureVM -ScheduleRunFrequency Hourly
New-AzRecoveryServicesBackupProtectionPolicy -Name "MyEnhancedPolicy" -WorkloadType AzureVM -SchedulePolicy $sch -RetentionPolicy $ret
CLI snippet:
az backup policy create \
--resource-group MyRG \
--vault-name MyVault \
--name MyEnhancedPolicy \
--backup-management-type AzureIaaSVM \
--policy-sub-type Enhanced \
--policy @policy.json
Assign the Enhanced policy to your VM
- In the Recovery Services vault → Backup Items → Azure Virtual Machines, select your VM.
- Click Change Backup Policy, pick your new Enhanced policy, and confirm.
- Kick off a manual backup (Backup Now) to validate.
- Double-check prerequisites
- Ensure you have Backup Contributor on the vault and VM Contributor on the VM’s resource group.
- Confirm Enhanced policies are available in your region (all public/Azure Gov regions).
- Remember: once you migrate from Standard → Enhanced, you cannot switch back.
- Monitor costs
- Enhanced policies incur additional snapshot costs (zone-redundant snapshots, more frequent backups, longer snapshot retention).
- See “Recovery Point Size and Backup Costs” for details and Log Analytics reporting.
Hope that helps! If you still run into problems, could you share:
• The exact VM type/OS and disk types you’re using?
• Whether you tried via Portal, CLI or PowerShell (and any commands you ran)?
• The region your vault is in? That info will help narrow things down.
References
- Resolve UserErrorThisVMBackupIsSupportedUsingEnhancedPolicy: https://learn.microsoft.com/azure/backup/backup-azure-vms-enhanced-policy?wt.mc_id=knowledgesearch_inproduct_azure-cxp-community-insider#create-an-enhanced-policy-and-configure-the-vm-backup
- Back up an Azure VM by using the Enhanced policy (Portal, CLI, PowerShell): https://learn.microsoft.com/azure/backup/backup-azure-vms-enhanced-policy
- Migrate Azure VM backups from Standard to Enhanced policy: https://learn.microsoft.com/azure/backup/backup-azure-vm-migrate-enhanced-policy
- Recovery Point Size and Backup Costs: https://supportability.visualstudio.com/AzureBackup/_wiki/wikis/AzureBackup/1511729/Troubleshoot/Azure VM/Azure VM Advisory Howto/Recovery Point Size and Backup Costs