Get-VBREPPermission

Short Description

Returns user access permissions for backup repositories for Veeam Agent or Veeam Plug-in operating in the standalone mode.

Syntax

Get-VBREPPermission -Repository <CBackupRepository> [<CommonParameters>]

Detailed Description

This cmdlet returns user access permissions for a backup repository that is used as a target by Veeam Agent or Veeam Plug-in operating in the standalone mode.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Repository

Specifies the backup repository. The cmdlet will return the permissions for these repositories.

Accepts string (repository name) or the CBackupRepository object. To get this object, run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet.

CBackupRepository

True

Named

True (ByPropertyName, ByValue)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBREPPermission

Examples

Get-VBREPPermissionExample 1. Getting Repository Permissions [Using Variable]

This example shows how to get the repository permissions using a variable.

$repository = Get-VBRBackupRepository -Name "WinLocal"

Get-VBREPPermission -Repository $repository

RepositoryId : 88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec

PermissionType : Everyone

Users : {}

IsEncryptionEnabled : False

EncryptionKey :

Perform the following steps:

  1. Run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save it to the $repository variable.
  2. Run the Get-VBREPPermission cmdlet. Set the $repository variable as the Repository parameter value.

Get-VBREPPermissionExample 2. Getting Repository Permissions [Using Pipeline]

This example shows how to get the repository permissions using a pipeline.

Get-VBRBackupRepository -Name "WinLocal" | Get-VBREPPermission

RepositoryId : 88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec

PermissionType : Everyone

Users : {}

IsEncryptionEnabled : False

EncryptionKey :

Perform the following steps:

  1. Run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value.
  2. Pipe the cmdlet output to the Get-VBREPPermission cmdlet.

Get-VBRBackupRepositoryReturns a list of backup repositories.

Page updated 2026-08-19

Page content applies to build 13.1.1.18