--- title: "Enable-VBRRepositoryExtentSealedMode" description: "This cmdlet enables Sealed mode for extents of a scale-out backup repository. Run the Disable-VBRRepositoryExtentSealedMode cmdlet to disable Sealed mode for extents of a scale-out backup repository." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrrepositoryextentsealedmode.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Scale-Out Backup Repositories > Performance Tier > Enable-VBRRepositoryExtentSealedMode" dateModified: "2026-08-19" --- # Enable-VBRRepositoryExtentSealedMode ## Short Description Enables Sealed mode for extents of a scale-out backup repository. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Enable-VBRRepositoryExtentSealedMode -Extent [-RunAsync] [] ``` ## Detailed Description This cmdlet enables Sealed mode for extents of a scale-out backup repository. Run the [`Disable-VBRRepositoryExtentSealedMode`](disable-vbrrepositoryextentsealedmode.md) cmdlet to disable Sealed mode for extents of a scale-out backup repository. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Extent

Specifies an array of scale-out repository extents. The cmdlet will enable the Sealed mode for these extents.

Accepts the ID, the String (name of the backup repository that is used as extent), or the VBRRepositoryExtent [] object.

To get the performance extent, run the Get-VBRRepositoryExtent cmdlet.

To get the capacity extent, run the Get-VBRCapacityExtent cmdlet.

To get the archive extent, run the Get-VBRArchiveExtent cmdlet.

VBRRepositoryExtent[]

True

Named

True (ByPropertyName, ByValue)

RunAsync

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

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Enabling Sealed Mode for Capacity Extents This example shows how to enable Sealed mode for capacity extents of a scale-out backup repository. ``` $repository = Get-VBRBackupRepository -ScaleOut $extent = Get-VBRCapacityExtent -Repository $repository Enable-VBRRepositoryExtentSealedMode -Extent $extent ``` Perform the following steps: 1. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Provide the `ScaleOut` parameter value. Save the result to the `$repository` variable. 2. Run the [`Get-VBRCapacityExtent`](get-vbrcapacityextent.md) cmdlet. Set the `Repository` variable as the `Repository` parameter value. Save the result to the `$extent` variable. 3. Run the `Enable-VBRRepositoryExtentSealedMode` cmdlet. Set the `$extent` variable as the `Extent` parameter value. ::: ## Related Commands - [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) - [`Get-VBRCapacityExtent`](get-vbrcapacityextent.md)