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: Standard, Enterprise, Enterprise Plus

Syntax

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

Related Commands

Get-VBRBackupRepository

Return Type

VBRRepositoryExtent[]

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 object, GUID or string (repository name).

True

Named

True (by Value
FromPipeline, ValueFromPipeline
ByPropertyName)

True

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Example 1

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

PS C:\PS> Get-VBRRepositoryExtent -Repository "Veeam Performance Scale-Out Repository"

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.

PS C:\PS> Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository" | 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.

PS C:\PS> $scaleoutrepository = Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository"

PS C:\PS> Get-VBRRepositoryExtent -Repository $scaleoutrepository