--- title: "Get-VBREntraIDTenantBackupJob" description: "This cmdlet returns backup jobs that protect Entra ID tenants." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrentraidtenantbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Tenant Backup Jobs > Get-VBREntraIDTenantBackupJob" dateModified: "2026-08-19" --- # Get-VBREntraIDTenantBackupJob ## Short Description Returns backup jobs that protect 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 backup jobs that protect Entra ID tenants. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs of tenant backup jobs. The cmdlet will return an array of jobs with the specified IDs.

Guid[]

False

Named

True (ByPropertyName)

Name

Specifies an array of names of tenant backup jobs. The cmdlet will return an array of jobs with the specified names.

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 [`VBREntraIDTenantBackupJob`](vbrentraidtenantbackupjob.md) objects that contain settings of the tenant backup job. ## Examples ::: example ### Example 1. Getting All Tenant Backup Jobs This example shows how to get all tenant backup jobs. ``` $backupJobs = Get-VBREntraIDTenantBackupJob ``` ::: ::: example ### Example 2. Getting Tenant Backup Job by Name This example shows how to get the `Tenant Backup` backup job. ``` $backupJob = Get-VBREntraIDTenantBackupJob -Name "Tenant Backup" ``` :::