--- title: "Disable-VBRRepositoryExtentMaintenanceMode" description: "This cmdlet disables Maintenance mode for a selected extent or several extents of scale-out backup repositories. You can disable the Maintenance mode that was enabled with the Enable-VBRRepositoryExtentMaintenanceMode cmdlet." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrrepositoryextentmaintenancemode.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Scale-Out Backup Repositories > Performance Tier > Disable-VBRRepositoryExtentMaintenanceMode" dateModified: "2026-08-19" --- # Disable-VBRRepositoryExtentMaintenanceMode ## Short Description Disables Maintenance mode for extents of a scale-out backup repository. **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRRepositoryExtentMaintenanceMode -Extent [-RunAsync] [] ``` ## Detailed Description This cmdlet disables Maintenance mode for a selected extent or several extents of scale-out backup repositories. You can disable the Maintenance mode that was enabled with the [`Enable-VBRRepositoryExtentMaintenanceMode`](enable-vbrrepositoryextentmaintenancemode.md) cmdlet. When you disable the Maintenance mode, the extents return to normal operation. With one command, you can disable the Maintenance mode for multiple extents. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Extent

Specifies the array of scale-out repository extents. The cmdlet will disable the Maintenance mode for these extents.

Accepts extents with different policies and of different scale-out repositories.

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). ## Output Object [`VBRSession`](vbrsession.md) ## Examples ::: example ### Disabling Maintenance Mode for Performance Extents This example shows how to disable the Maintenance mode for the performance extents. ``` $scaleoutrepository = Get-VBRBackupRepository -ScaleOut -Name "Amazon S3" $extent = Get-VBRrepositoryExtent -Repository $scaleoutrepository Disable-VBRRepositoryExtentMaintenanceMode -Extent $extent[2] ``` Perform the following steps: 1. Run the [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) cmdlet. Specify the `Name` parameter value and provide the `ScaleOut` parameter. Save the result to the `$scaleoutrepository` variable. 2. Run the [`Get-VBRrepositoryExtent`](get-vbrrepositoryextent.md) cmdlet. Set the `$scaleoutrepository` as the `Repository` parameter value. Save the result to the `$extent` variable. The [`Get-VBRrepositoryExtent`](get-vbrrepositoryextent.md) cmdlet will return an array of extents. Mind the ordinal number of the necessary extent (in our example, it is the third extent in the array). 3. Run the `Disable-VBRRepositoryExtentMaintenanceMode` cmdlet. Set the `$extent` variable as the `Extent` parameter value. ::: ## Related Commands - [`Get-VBRBackupRepository`](get-vbrbackuprepository.md) - [`Get-VBRRepositoryExtent`](get-vbrrepositoryextent.md)