--- title: "Remove-VBRFailoverPlan" description: "This cmdlet removes a selected failover plan from Veeam Backup & Replication console and database." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrfailoverplan.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Replication > Failover Plans > Remove-VBRFailoverPlan" dateModified: "2026-08-19" --- # Remove-VBRFailoverPlan ## Short Description Removes a selected failover plan or a cloud failover plan. **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRFailoverPlan -FailoverPlan [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes a selected failover plan from Veeam Backup & Replication console and database. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

FailoverPlan

Specifies the array of failover plans you want to remove.

Accepts the VBRFailoverPlan or VBRCloudFailoverPlan objects. To get these objects, run the Get-VBRFailoverPlan cmdlet.

VBRFailoverPlan[]

True

Named

True (ByPropertyName, ByValue)

Confirm

Defines that the cmdlet displays a prompt that asks if the user is sure that they want to continue.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet writes 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 ### Example 1. Removing Failover Plan [Using Pipeline] This command removes the `MS Exchange Group Failover` failover plan. ``` Get-VBRFailoverPlan -Name "MS Exchange Group Failover" | Remove-VBRFailoverPlan ``` Perform the following steps: 1. Run the [`Get-VBRFailoverPlan`](get-vbrfailoverplan.md) cmdlet. Specify the `Name` parameter value. 2. Pipe the cmdlet output to the `Remove-VBRFailoverPlan` cmdlet. ::: ::: example ### Example 2. Removing Failover Plan [Using Variable] This example shows how to remove the `MS Exchange Group Failover` failover plan. ``` $MSExchangeGroup = Get-VBRFailoverPlan -Name "MS Exchange Group Failover" Remove-VBRFailoverPlan -FailoverPlan $MSExchangeGroup ``` Perform the following steps: 1. Run the [`Get-VBRFailoverPlan`](get-vbrfailoverplan.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$MSExchangeGroup` variable. 2. Run the `Remove-VBRFailoverPlan` cmdlet. Set the `$MSExchangeGroup` variable as the `FailoverPlan` parameter value. ::: ## Related Commands [`Get-VBRFailoverPlan`](get-vbrfailoverplan.md)