Skip to content

Commit 0fd89f4

Browse files
Merge pull request #299089 from AbhishekMallick01/Apr-29-2025-Freshness
Freshness - Tutorial Az VM backup via PS
2 parents 9e13598 + 95f635e commit 0fd89f4

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

articles/backup/tutorial-backup-azure-vm.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Tutorial: Multiple Azure VM backup with PowerShell'
33
description: This tutorial details backing up multiple Azure VMs to a Recovery Services vault using Azure PowerShell.
44
ms.topic: tutorial
5-
ms.date: 03/05/2019
5+
ms.date: 04/30/2025
66
ms.custom: mvc, devx-track-azurepowershell
77
author: jyothisuri
88
ms.author: jsuri
@@ -14,15 +14,7 @@ ms.author: jsuri
1414

1515
This tutorial describes how to deploy an [Azure Backup](backup-overview.md) Recovery Services vault to back up multiple Azure VMs using PowerShell.
1616

17-
In this tutorial you learn how to:
18-
19-
> [!div class="checklist"]
20-
>
21-
> * Create a Recovery Services vault and set the vault context.
22-
> * Define a backup policy
23-
> * Apply the backup policy to protect multiple virtual machines
24-
> * Trigger an on-demand backup job for the protected virtual machines
25-
Before you can back up (or protect) a virtual machine, you must complete the [prerequisites](backup-azure-arm-vms-prepare.md) to prepare your environment for protecting your VMs.
17+
Before you back up (or protect) a virtual machine, complete the [prerequisites](backup-azure-arm-vms-prepare.md) to prepare your environment for protecting your VMs.
2618

2719
> [!IMPORTANT]
2820
> This tutorial assumes you've already created a resource group and an Azure virtual machine.
@@ -48,7 +40,7 @@ A [Recovery Services vault](backup-azure-recovery-services-vault-overview.md) is
4840
* In this tutorial, you create the vault in the same resource group and location as the VM you want to back up.
4941
* Azure Backup automatically handles storage for backed up data. By default the vault uses [Geo-Redundant Storage (GRS)](../storage/common/storage-redundancy.md#geo-redundant-storage). Geo-redundancy ensures that backed up data is replicated to a secondary Azure region, hundreds of miles away from the primary region.
5042
51-
Create the vault as follows:
43+
To create the vault, run the following cmdlets:
5244
5345
1. Use the [New-AzRecoveryServicesVault](/powershell/module/az.recoveryservices/new-azrecoveryservicesvault) to create the vault. Specify the resource group name and location of the VM you want to back up.
5446
@@ -78,7 +70,7 @@ Backups run in accordance with the schedule specified in the backup policy. When
7870
* The default protection policy triggers a backup job once a day at a specified time.
7971
* The default retention policy retains the daily recovery point for 30 days.
8072
81-
To enable and backup up the Azure VM in this tutorial, we do the following:
73+
To enable and backup up the Azure VM, follow these steps:
8274
8375
1. Specify a container in the vault that holds your backup data with [Get-AzRecoveryServicesBackupContainer](/powershell/module/az.recoveryservices/get-Azrecoveryservicesbackupcontainer).
8476
2. Each VM for backup is an item. To start a backup job, you obtain information about the VM with [Get-AzRecoveryServicesBackupItem](/powershell/module/az.recoveryservices/Get-AzRecoveryServicesBackupItem).
@@ -95,11 +87,11 @@ $item = Get-AzRecoveryServicesBackupItem -Container $namedContainer -WorkloadTyp
9587
$job = Backup-AzRecoveryServicesBackupItem -Item $item
9688
```
9789

98-
## Troubleshooting
90+
## Troubleshoot Azure Virtual Machine backup errors
9991

10092
If you run into issues while backing up your virtual machine, review this [troubleshooting article](backup-azure-vms-troubleshoot.md).
10193

102-
### Deleting a Recovery Services vault
94+
### Deletion of a Recovery Services vault
10395

10496
If you need to delete a vault, first delete recovery points in the vault, and then unregister the vault, as follows:
10597

0 commit comments

Comments
 (0)