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 <VBRRepositoryExtent[]> [-RunAsync] [<CommonParameters>] |
Detailed Description
This cmdlet enables Sealed mode for extents of a scale-out backup repository.
Run the Disable-VBRRepositoryExtentSealedModeDisables Sealed mode for extents of a scale-out backup repository. 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
To get the performance extent, run the
To get the capacity extent, run the
To get the archive extent, run the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
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:
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Provide theScaleOutparameter value. Save the result to the$repositoryvariable. - Run the
Get-VBRCapacityExtentReturns the capacity extents. cmdlet. Set theRepositoryvariable as theRepositoryparameter value. Save the result to the$extentvariable. - Run the
Enable-VBRRepositoryExtentSealedModecmdlet. Set the$extentvariable as theExtentparameter value.
Related Commands
Get-VBRBackupRepositoryReturns a list of backup repositories.Get-VBRCapacityExtentReturns the capacity extents.