--- title: "Enable-VBRCloudMaintenanceMode" description: "This cmdlet sets the cloud infrastructure into Maintenance mode to let a service provider perform Maintenance tasks. Run the Disable-VBRCloudMaintenanceMode cmdlet to bring the cloud infrastructure back to the normal operational mode." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrcloudmaintenancemode.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Infrastructure Maintenance > Enable-VBRCloudMaintenanceMode" dateModified: "2026-08-19" --- # Enable-VBRCloudMaintenanceMode ## Short Description Enables Maintenance mode for the cloud infrastructure. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a cloud provider license. ## Syntax ``` Enable-VBRCloudMaintenanceMode [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet sets the cloud infrastructure into Maintenance mode to let a service provider perform Maintenance tasks. Run the [`Disable-VBRCloudMaintenanceMode`](disable-vbrcloudmaintenancemode.md) cmdlet to bring the cloud infrastructure back to the normal operational mode. ::: important When a service provider enables the Maintenance mode, cloud resources become temporarily inaccessible for the associated cloud tenants. As a result, most of the running jobs fail. For more information, see the [Maintenance Mode](https://helpcenter.veeam.com/docs/backup/cloud/cc_maintenance_mode.html?ver=120) section in the Veeam Cloud Connect Guide. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

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). ## Examples ::: example ### Enabling Maintenance Mode for Cloud Infrastructure This command puts the cloud infrastructure to Maintenance mode. ``` Enable-VBRCloudMaintenanceMode ``` :::