--- title: "Get-VBREntraIDTenantBackup" description: "Returns backups of Microsoft Entra ID tenants. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: AllParameterSets (Default) Id Name This cmdlet returns backups of Micros" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrentraidtenantbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Tenant Backups > Get-VBREntraIDTenantBackup" dateModified: "2026-08-19" --- # Get-VBREntraIDTenantBackup ## Short Description Returns backups of Microsoft Entra ID tenants. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backups of Microsoft Entra ID tenants. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of tenant backup IDs.

Guid[]

False

Named

True (ByPropertyName)

Name

Specifies an array of job names whose backups you want to get.

String[]

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the array of [`VBREntraIDTenantBackup`](vbrentraidtenantbackup.md) objects that contain properties of backups. ## Examples ::: example ### Example 1. Getting All Backups This example shows how to get all backups. ``` $tenantBackups = Get-VBREntraIDTenantBackup ``` ::: ::: example ### Example 2. Getting Backup by Job Name This example shows how to get backups of the `Tenant Backup` backup job. ``` $tenantBackup = Get-VBREntraIDTenantBackup -Name "Tenant Backup" ``` :::