--- title: "Remove-VBREntraIDTenant" description: "This cmdlet removes Entra ID tenants from the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrentraidtenant.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Infrastructure Components > Remove-VBREntraIDTenant" dateModified: "2026-08-19" --- # Remove-VBREntraIDTenant ## Short Description Removes Microsoft Entra ID tenants from the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBREntraIDTenant -Tenant [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes Entra ID tenants from the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Tenant

Specifies an array of tenants that you want to remove from the backup infrastructure.

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

VBREntraIDTenant[]

True

Named

False

Confirm

Prompts you for confirmation before running the cmdlet.

SwitchParameter

False

Named

False

WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

SwitchParameter

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). ## Examples ::: example ### Removing Entra ID Tenant This example shows how to remove an Entra ID tenant from the backup infrastructure. ``` $tenant = Get-VBREntraIdTenant -AzureTenantId "xxxxx" Remove-VBREntraIDTenant -Tenant $tenant ``` Perform the following steps: 1. Run the [`Get-VBREntraIdTenant`](get-vbrentraidtenant.md) cmdlet. Specify the `AzureTenantId` parameter value. Save the result to the `$tenant` variable. 2. Run the `Remove-VBREntraIDTenant` cmdlet. Set the `$tenant` variable as the `Tenant` parameter value. ::: ## Related Commands [`Get-VBREntraIdTenant`](get-vbrentraidtenant.md)