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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CapacityExtent

Specifies a capacity extent of scale-out backup repositories. The cmdlet will enable Sealed mode for the specified capacity extent.

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

VBRCapacityExtent[]

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). ## Output Object [`VBRSession`](vbrsession.md) ## Examples ::: example ### Enabling Sealed Mode for Capacity Extent This example shows how to enable *Sealed* mode for the specified capacity extent of the scale-out backup repository. ``` $repository = Get-VBRBackupRepository -ScaleOut $extent = Get-VBRCapacityExtent Enable-VBRCapacityExtentSealedMode -CapacityExtent $extent ``` Perform the following steps: 1. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Provide the `ScaleOut` parameter. Save the result to the `$repository` variable. 2. Run the [`Get-VBRCapacityExtent`](get-vbrcapacityextent.md) cmdlet. Save the result to the `$extent` variable. 3. Run the `Enable-VBRCapacityExtentSealedMode` cmdlet. Set the `$extent` variable as the `CapacityExtent` parameter value. ::: ## Related Commands - [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) - [`Get-VBRCapacityExtent`](get-vbrcapacityextent.md)