Short Description
Returns Exchange organizations.
Syntax
This cmdlet provides 3 parameter sets.
- For getting all Exchange organizations added to Veeam Backup for Microsoft Office 365:
Get-VBOOrganization [<CommonParameters>] |
- For getting Exchange organization added to Veeam Backup for Microsoft Office 365 by system ID:
Get-VBOOrganization -Id <guid> [<CommonParameters>] |
- For getting Exchange organizations added to Veeam Backup for Microsoft Office 365 by name:
Get-VBOOrganization -Name <string> [<CommonParameters>] |
Detailed Description
This cmdlet returns Exchange organizations added to Veeam Backup for Microsoft Office 365.
You can get the list of all Exchange organizations directly by name or system ID.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Id | Specifies system ID assigned to Exchange organization. The cmdlet will return the organization with this ID. | True | Named | False | False |
Name | Specifies the name of Exchange organization. The cmdlet will return the organization with this name. | True | Named | False | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example 1
This command returns all Exchange organizations added to Veeam Backup for Microsoft Office 365.
PS C:\PS> Get-VBOOrganization |
Example 2
This command returns Exchange organization with a specified ID.
PS C:\PS> Get-VBOOrganization -Id "47972f7d-05c4-43b5-95f7-60735ee56006" |
Example 3
This command returns Exchange organizations with names starting with "ABC".
PS C:\PS> Get-VBOOrganization -Name "ABC*" |