Disable-VBRCapacityExtentMaintenanceMode
Short Description
Disables the maintenance mode for the capacity extent.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Enable-VBRCapacityExtentMaintenanceMode -CapacityExtent <VBRCapacityExtent[]> [-RunAsync] [<CommonParameters>] |
Detailed Description
This cmdlet disables the maintenance mode for the capacity extent of the scale-out backup repository. Run Enable-VBRCapacityExtentMaintenanceMode to enable the maintenance mode.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
CapacityExtent | Specifies the capacity extent. The cmdlet will disable the maintenance mode for this extent. | True | Named | True (ByValue, | False |
RunAsync | Indicates that the command returns immediately without waiting for the task to complete. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
This example shows how to disable the maintenance mode for the capacity extent.
- Run Get-VBRBackupRepository to get the scale-out repository. Save the result to the $scaleoutrepository variable.
- Run Get-VBRCapacityExtent to get the capacity extents that you want to set to the maintenance mode. Save the result to the $extent variable.
- Run Disable-VBRCapacityExtentMaintenanceMode with the $extent variable.
$scaleoutrepository = Get-VBRBackupRepository -ScaleOut -Name "Amazon S3" $extent = Get-VBRCapacityExtent -Repository $scaleoutrepository Disable-VBRCapacityExtentMaintenanceMode -CapacityExtent $extent |
Related Commands