--- title: "Remove-VBREntraIDTenantBackupJob" description: "This cmdlet removes Entra ID tenant backup jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrentraidtenantbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Tenant Backup Jobs > Remove-VBREntraIDTenantBackupJob" dateModified: "2026-08-19" --- # Remove-VBREntraIDTenantBackupJob ## Short Description Removes backup jobs that protect Microsoft Entra ID tenants. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBREntraIDTenantBackupJob -Job [] ``` ## Detailed Description This cmdlet removes Entra ID tenant backup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of tenant backup jobs that you want to remove.

Accepts the VBREntraIDTenantBackupJob[] object. To get this object, run the Get-VBREntraIDTenantBackupJob cmdlet.

VBREntraIDTenantBackupJob[]

True

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). ## Examples ::: example ### Removing Entra ID Tenant Backup Job This example shows how to remove the `Tenant Backup` backup job. ``` $backupJob = Get-VBREntraIDTenantBackupJob -Name "Tenant Backup" Remove-VBREntraIDTenantBackupJob -Job $backupJob ``` Perform the following steps: 1. Run the [`Get-VBREntraIDTenantBackupJob`](get-vbrentraidtenantbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$backupJob` variable. 2. Run the `Remove-VBREntraIDTenantBackupJob` cmdlet. Set the `$backupJob` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBREntraIDTenantBackupJob`](get-vbrentraidtenantbackupjob.md)