Remove-VBREntraIDTenant
Short Description
Removes Microsoft Entra ID tenants from the backup infrastructure.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Remove-VBREntraIDTenant -Tenant <VBREntraIDTenant[]> [<CommonParameters>] |
Detailed Description
This cmdlet removes Entra ID tenants from the backup infrastructure.
Parameters
Parameter | Description | Type | Required | Position | Accept |
---|---|---|---|---|---|
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. | True | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
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:
- Run the Get-VBREntraIdTenant cmdlet. Specify the AzureTenantId parameter value. Save the result to the $tenant variable.
- Run the Remove-VBREntraIDTenant cmdlet. Set the $tenant variable as the Tenant parameter value.
Related Commands