Short Description
Removes Exchange organizations.
|
Before removing an Exchange 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 the specified Exchange organization from Veeam Backup for Microsoft Office 365.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Organization | Specifies Exchange 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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to remove an Exchange organization.
You will need to perform the following steps:
- Run Get-VBOOrganization to get the Exchange organization. Save the result to the $org variable.
- Run Remove-VBOOrganization with the $org variable.
PS C:\PS> $org = Get-VBOOrganization -Name "Dev Community" PS C:\PS> Remove-VBOOrganization -Organization $org |
Related Commands