Disable-VBRRepositoryExtentSealedMode
Short Description
Disables sealed mode for for extents of a scale-out backup repository.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Disable-VBRRepositoryExtentSealedMode -Extent <VBRRepositoryExtent[]> [-RunAsync] [<CommonParameters>] |
Detailed Description
This cmdlet disables sealed mode for for extents of a scale-out backup repository.
Run the Enable-VBRRepositoryExtentSealedMode cmdlet to enable 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 disable the sealed mode for these 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 | True | 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
Disabling Sealed Mode for Extents
This example shows how to disable sealed mode for extents of a scale-out backup repository.
$repository = Get-VBRBackupRepository -ScaleOut $extent = Get-VBRCapacityExtent -Repository $repository Disable-VBRRepositoryExtentSealedMode -Extent $extent |
Perform the following steps:
- Run the Get-VBRBackupRepository cmdlet. Provide the ScaleOut parameter value. Save the result to the $repository variable.
- Run the Get-VBRCapacityExtent cmdlet. Set the $repository variable as the Repository parameter value.
- Run the Disable-VBRRepositoryExtentSealedMode cmdlet. Set the $extent variable as the Extent parameter value.
Related Commands