Get-VBREPPermission

Short Description

Returns user access permissions for backup repositories for Veeam Agent operating in a 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 operating in a standalone mode.

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-VBRBackupRepository cmdlet.

True

Named

True (ByValue,
ByProperty
Name)

<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-VBRBackupRepository 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-VBRBackupRepository cmdlet. Specify the Name parameter value.
  2. Pipe the cmdlet output to the Get-VBREPPermission cmdlet.

Related Commands

Get-VBRBackupRepository