New-VBORbacRoleItem

Short Description

Defines objects that will be managed by restore operators or excluded objects whose backed-up data will not be explored and restored by restore operators.

Syntax

This cmdlet provides parameter sets that allow you to:

  • Create objects to manage/exclude that represent users.

New-VBORbacRoleItem -User <VBOOrganizationUser[]>  [<CommonParameters>]

  • Create objects to manage/exclude that represent groups.

New-VBORbacRoleItem -Group <VBOOrganizationGroup[]>  [<CommonParameters>]

  • Create objects to manage/exclude that represent sites.

New-VBORbacRoleItem -Site <VBOOrganizationSite[]>  [<CommonParameters>]

  • Create objects to manage/exclude that represent personal sites.

New-VBORbacRoleItem -PersonalSites <SwitchParameter> [<CommonParameters>]

  • Create objects to manage/exclude that represent teams.

New-VBORbacRoleItem -Team <VBOOrganizationTeam[]>  [<CommonParameters>]

Detailed Description

This cmdlet creates the VBORbacRoleItem object. This object contains specific users, groups, sites, or teams. Restore operators will be allowed/not allowed to explore and restore data from backups created by Veeam Backup for Microsoft 365 for this object.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

User

Specifies an array of users added to Veeam Backup for Microsoft 365. The cmdlet will define these users as objects to manage/exclude.

Accepts the VBOOrganizationUser[] object.

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

True

Named

False

False

Group

Specifies an array of groups added to Veeam Backup for Microsoft 365. The cmdlet will define these groups as objects to manage/exclude.

Accepts the VBOOrganizationGroup[] object.

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

True

Named

False

False

Site

Specifies an array of SharePoint sites added to Veeam Backup for Microsoft 365. The cmdlet will define these sites as objects to manage/exclude.

Accepts the VBOOrganizationSite[] object.

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

True

Named

False

False

Team

Specifies an array of teams added to Veeam Backup for Microsoft 365. The cmdlet will define these teams as objects to manage/exclude.

Accepts the VBOOrganizationTeam[] object.

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

True

Named

False

False

PersonalSites

Defines that the cmdlet will define personal sites as objects to manage/exclude.

SwitchParameter

True

Named

False

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

This cmdlet returns the VBORbacRoleItem object that contains details on users, groups, or sites that will be managed by restore operators or excluded.

Examples

New-VBORbacRoleItemExample 1. Defining User as Object to Manage/Exclude

This example shows how to define the JohnDoe organization user as an object to manage/exclude.

$org = Get-VBOOrganization -Name "ABC"

$User = Get-VBOOrganizationUser -Organization $org -DisplayName "JohnDoe"

New-VBORbacRoleItem -User $User

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet with the Name parameter to get the organization with the name ABC. Save the result to the $org variable.
  2. Run the Get-VBOOrganizationUser cmdlet with the $org variable and the JohnDoe value for the DisplayName parameter. Save the result to the $User variable.
  3. Run the New-VBORbacRoleItem cmdlet. Set the $User variable as the User parameter value.

Related Commands