Remove-VBOOrganization
Short Description
Removes organizations added to Veeam Backup for Microsoft Office 365.
|
Before removing an organization, make sure all jobs configured for that organization are in the Disabled state. |
Syntax
Remove-VBOOrganization -Organization <VBOOrganization> [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to remove Microsoft Exchange organizations from a Veeam Backup for Microsoft Office 365 infrastructure.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Organization | Specifies an organization you want to remove. | True | Named | True (ByValue) | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example
This example shows how to remove an organization.
- Run Get-VBOOrganization to get the organization. Save the result to the $org variable.
- Run Remove-VBOOrganization with the $org variable.
$org = Get-VBOOrganization -Name "Dev Community" Remove-VBOOrganization -Organization $org |
Related Commands