This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRRepositoryExtent

Short Description

Returns scale-out backup repository extents.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRRepositoryExtent -Repository <VBRScaleOutBackupRepository>  [<CommonParameters>]

Detailed Description

This cmdlet returns extents of scale-out backup repositories.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Repository

Specifies the scale-out backup repository. The cmdlet will return the extents added to this repository.

Accepts VBRScaleOutBackupRepository, GUID or string (repository name) types.

True

Named

True (ByValue,
ByProperty
Name)

True

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

VBRRepositoryExtent[]

Example 1

This command returns extents of the "Veeam Performance Scale-Out Repository". The scale-out repository is specified by name.

Get-VBRRepositoryExtent -Repository "Veeam Performance Scale-Out Repository" -ScaleOut

Example 2

This command returns extents of the "Veeam Performance Scale-Out Repository".

The scale-out repository is obtained with Get-VBRBackupRepository and piped down.

Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository" -ScaleOut| Get-VBRRepositoryExtent

Example 3

This command returns extents of the "Veeam Performance Scale-Out Repository".

The scale-out repository is obtained with Get-VBRBackupRepository and assigned to the '$scaleoutrepository' variable.

$scaleoutrepository = Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository" -ScaleOut

Get-VBRRepositoryExtent -Repository $scaleoutrepository

Related Commands

Get-VBRBackupRepository