--- title: "Get-VBORbacRole" description: "This cmdlet returns an array of restore operator roles added to Veeam Backup for Microsoft 365." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vborbacrole.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Restore Portal > Get-VBORbacRole" dateModified: "2026-08-21" --- # Get-VBORbacRole ## Short Description Returns settings of restore operator roles. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of restore operator roles added to Veeam Backup for Microsoft 365. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of the restore operator role. The cmdlet will return the restore operator role with the specified ID.

Guid

True

Named

False

Name

Specifies a restore operator role name. The cmdlet will return the restore operator role with this name.

String

True

Named

False

Organization

Specifies a Microsoft organization. The cmdlet will return restore operator roles that are added to the specified Microsoft organization.

Accepts the VBOOrganization object.

To get this object, run the Get-VBOOrganization cmdlet.

VBOOrganization

False

Named

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 Learn. ## Output Object The cmdlet returns the [`VBOOperatorRole`](vbooperatorrole.md) object that contains a list of restore operator roles added to Veeam Backup for Microsoft 365. ## Examples ::: example ### Example 1: Getting Restore Operator Roles by Organization This example shows how to get restore operator roles added to the *ABC* organization. ``` $org = Get-VBOOrganization -Name "ABC" Get-VBORbacRole -Organization $org ``` Perform the following steps: 1. Run the [`Get-VBOOrganization`](get-vboorganization.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$org` variable. 2. Run the `Get-VBORbacRole` cmdlet. Set the `$org` variable as the `Organization` parameter value. ::: ::: example ### Example 2: Getting Restore Operator Role by ID This command returns details of the `f3f29c99-20b4-4eaa-9615-3b4c9d913a69` restore operator role. ``` Get-VBORbacRole -Id f3f29c99-20b4-4eaa-9615-3b4c9d913a69 ``` ::: ## Related Commands [`Get-VBOOrganization`](get-vboorganization.md)