--- title: "Get-VBREntraIDTenant" description: "Returns Microsoft Entra ID tenants added to the backup infrastructure. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns Entra ID tenants added to th" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrentraidtenant.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Infrastructure Components > Get-VBREntraIDTenant" dateModified: "2026-08-19" --- # Get-VBREntraIDTenant ## Short Description Returns Microsoft Entra ID tenants added to the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns Entra ID tenants added to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AzureTenantId

Specifies an array of Microsoft Entra tenant IDs.

String[]

False

Named

False

Id

Specifies an array of Veeam Backup & Replication tenant IDs.

Note: These are IDs that Veeam Backup & Replication assigns to the tenants after they are added to the backup infrastructure.

Guid[]

False

Named

True (ByPropertyName)

`` 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 [`VBREntraIdTenant`](vbrentraidtenant.md) objects that contain settings of tenants. ## Examples ::: example ### Example 1. Getting All Tenants This example shows how to get all tenants added to the backup infrastructure. ``` $tenants = Get-VBREntraIdTenant ``` ::: ::: example ### Example 2. Getting Tenant Using Entra ID This example shows how to get a tenant using its tenant ID in Entra ID. ``` $tenant = Get-VBREntraIdTenant -AzureTenantId "xxxx" ``` :::