--- title: "Get-VEODOrganization" description: "Returns Microsoft OneDrive organizations added to Veeam Backup for Microsoft 365. Product: Veeam Backup for Microsoft 365 Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns Microsoft OneDriv" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-veodorganization.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft OneDrive > Get-VEODOrganization" dateModified: "2026-08-18" --- # Get-VEODOrganization ## Short Description Returns Microsoft OneDrive organizations added to Veeam Backup for Microsoft 365. **Product**: Veeam Backup for Microsoft 365 **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VEODOrganization [-Session] [[-Name] ] [] ``` ## Detailed Description This cmdlet returns Microsoft OneDrive organizations added to Veeam Backup for Microsoft 365. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of Microsoft OneDrive organization names. The cmdlet will return an array of organizations with these names.

This parameter accepts wildcard characters.

String[]

False

1

False

Session

Specifies an active Microsoft OneDrive restore session. This cmdlet will return organizations from the specified restore session.

Accepts the VBOOneDriveItemRestoreSession object. To get this object, run the Get-VEODRestoreSession cmdlet.

VBOOneDriveItemRestoreSession

True

0

True (ByValue)

`` 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 Docs. ## Output Object The cmdlet returns the [`VBOOneDriveOrganization`](vboonedriveorganization.md)`[]` array that contains OneDrive organizations added to Veeam Backup for Microsoft 365. ## Examples ::: example ### Getting Microsoft OneDrive Organization This example shows how to get the `ABC` OneDrive organization added to Veeam Backup for Microsoft 365. ``` $session = Get-VEODRestoreSession Get-VEODOrganization -Session $session -Name "ABC*" ``` Perform the following steps: 1. Run the [`Get-VEODRestoreSession`](get-veodrestoresession.md) cmdlet. Save the result to the `$session` variable. 2. Run the `Get-VEODOrganization` cmdlet. Set the `$session` as the `Session` parameter value. Specify the `Name` parameter value. Use the \* wildcard character to substitute the timestamp. ::: ## Related Commands [`Get-VEODRestoreSession`](get-veodrestoresession.md)