Get-VBOOrganization
Short Description
Returns Microsoft organizations added to Veeam Backup for Microsoft Office 365.
Syntax
This cmdlet provides the following parameter sets.
- Get Microsoft organizations added to Veeam Backup for Microsoft Office 365 by name:
Get-VBOOrganization -Name <string> [<CommonParameters>] |
- Get Microsoft organizations added to Veeam Backup for Microsoft Office 365 by ID:
Get-VBOOrganization -Id <guid> [<CommonParameters>] |
Detailed Description
This cmdlet returns Microsoft organizations added to Veeam Backup for Microsoft Office 365 infrastructure.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Id | Specifies an ID of a Microsoft organization. The cmdlet will return the organization with this ID. | True | Named | False | False |
Name | Specifies a name of a Microsoft organization. The cmdlet will return Microsoft organization with this name. | True | Named | False | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example 1
This command returns Microsoft organizations added to Veeam Backup for Microsoft Office 365.
Get-VBOOrganization |
Example 2
This command returns a Microsoft organization with a specified ID.
Get-VBOOrganization -Id "47972f7d-05c4-43b5-95f7-60735ee56006" |
Example 3
This command returns the Atlanta Microsoft organization.
Get-VBOOrganization -Name "Atlanta" |
Example 4
This command returns all Microsoft organizations that start with Columb.
Get-VBOOrganization -Name "Columb*" |