--- title: "Get-VBOOrganization" description: "This cmdlet returns Microsoft organizations added to the Veeam Backup for Microsoft 365 infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboorganization.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Organizations Management > Organizations > Get-VBOOrganization" dateModified: "2026-08-21" --- # Get-VBOOrganization ## Short Description Returns Microsoft organizations added to the Veeam Backup for Microsoft 365 infrastructure. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns Microsoft organizations added to the Veeam Backup for Microsoft 365 infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Guid

True

Named

False

Name

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

String

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOOrganization`](vboorganization.md) object that contains settings of Microsoft organizations added to the Veeam Backup for Microsoft 365 infrastructure. ## Examples ::: example ### Example 1: Getting Microsoft Organizations Added to Veeam Backup for Microsoft 365 Infrastructure This command returns all Microsoft organizations that are added to the Veeam Backup for Microsoft 365 infrastructure. ``` Get-VBOOrganization ``` ::: ::: example ### Example 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 ``` ::: ::: example ### Example 3: Getting Microsoft Organization by Name This command returns the `Atlanta` Microsoft organization. ``` Get-VBOOrganization -Name "Atlanta" ``` ::: ::: example ### Example 4: Getting Microsoft Organization by Name [Using Wildcards] This command returns all Microsoft organizations with a name starting with `Columb`. ``` Get-VBOOrganization -Name "Columb*" ``` :::