This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBOOrganization

Short Description

Returns Microsoft organizations added to the Veeam Backup for Microsoft Office 365 infrastructure.

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get Microsoft organizations added to the Veeam Backup for Microsoft Office 365 infrastructure by name.

Get-VBOOrganization -Name <string>  [<CommonParameters>]

  • Get Microsoft organizations added to the Veeam Backup for Microsoft Office 365 infrastructure by ID.

Get-VBOOrganization -Id <guid>  [<CommonParameters>]

Detailed Description

This cmdlet returns Microsoft organizations added to the Veeam Backup for Microsoft Office 365 infrastructure.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies a name of a Microsoft organization. The cmdlet will return Microsoft organization with this name.

String

True

Named

False

Id

Specifies an ID of a Microsoft organization. The cmdlet will return the organization with this ID.

Guid

True

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBOOrganization object that contains settings of Microsoft organizations added to the Veeam Backup for Microsoft Office 365 infrastructure.

Examples

Get-VBOOrganizationExample 1. Getting Microsoft Organizations Added to Veeam Backup for Microsoft Office 365 Infrastructure

This command returns all Microsoft organizations that are added to the Veeam Backup for Microsoft Office 365 infrastructure.

Get-VBOOrganization

Get-VBOOrganizationExample 2. Getting Microsoft Organization by ID

This command returns the 47972f7d-05c4-43b5-95f7-60735ee56006 Microsoft organization.

Get-VBOOrganization -Id "47972f7d-05c4-43b5-95f7-60735ee56006"

Get-VBOOrganizationExample 3. Getting Microsoft Organization by Name

This command returns the Atlanta Microsoft organization.

Get-VBOOrganization -Name "Atlanta"

Get-VBOOrganizationExample 4. Getting Microsoft Organization by Name [Using Wildcards]

This command returns all Microsoft organizations that start with Columb.

Get-VBOOrganization -Name "Columb*"