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

Disable-VBRCapacityExtentSealedMode

Short Description

Disable sealed mode for object storage repositories.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Disable-VBRCapacityExtentSealedMode -CapacityExtent <VBRCapacityExtent[]> [-RunAsync]  [<CommonParameters>]

Detailed Description

This cmdlet disables sealed mode for object storage repositories.

Run the Enable-VBRCapacityExtentSealedMode cmdlet to enable the sealed mode for object storage that are added as extents to the scale-out backup repository.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CapacityExtent

Specifies an array of the capacity extents for scale-out backup repositories. The cmdlet will disable sealed mode for the specified capacity extents.

Accepts the VBRCapacityExtent[] object. To get this object, run the Get-VBRCapacityExtent cmdlet.

True

Named

True (ByValue, ByPropertyName)

RunAsync

Indicates that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

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

None

Enabling Sealed Mode for Object Storage Repository

This example shows how to enable sealed mode for the specified object storage repository that is added as an extent to the scale-out backup repository.

$repository = Get-VBRBackupRepository -ScaleOut

$extent = Get-VBRCapacityExtent

Disable-VBRCapacityExtentSealedMode -CapacityExtent $extent

Perform the following steps:

  1. Run the Get-VBRBackupRepository cmdlet. Provide the ScaleOut parameter. Save the result to the $repository variable.
  2. Run the Get-VBRCapacityExtent cmdlet. Save the result to the $extent variable.
  3. Run the Disable-VBRCapacityExtentSealedMode cmdlet. Set the $extent variable as the CapacityExtent parameter value.

Related Commands