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

Enable-VBRArchiveExtentSealedMode

Short Description

Enables the Seal mode for the archive extent.

Product Edition: Enterprise Plus, Veeam Universal License

Syntax

Enable-VBRArchiveExtentSealedMode -ArchiveExtent <VBRArchiveExtent[]> [-RunAsync] [<CommonParameters>]

Detailed Description

This cmdlet enables the Seal mode for the archive extent of the scale-out backup repository.

Run the Disable-VBRArchiveExtentSealedMode cmdlet to disable the Seal mode.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ArchiveExtent

Specifies the archive extent. The cmdlet will set this extent to the Seal mode.

Accepts the VBRArchiveExtent object. To get this object, run the Get-VBRArchiveExtent cmdlet.

True

Named

True (ByValue,
ByPropertyName)

RunAsync

Defines 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.

Examples

Enabling Seal Mode for Archive Extent

This example shows how to enable Seal mode for the specified capacity extent of the scale-out backup repository.

$repository = Get-VBRBackupRepository -ScaleOut

$extent = Get-VBRArchiveExtent

Enable-VBRArchiveExtentSealedMode -ArchiveExtent $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-VBRArchiveExtent cmdlet. Save the result to the $extent variable.
  3. Run the Enable-VBRArchiveExtentSealedMode cmdlet. Set the $extent variable as the ArchiveExtent parameter value.

Related Commands