--- title: "Stop-VBRCDPReplicaFailback" description: "Undoes a CDP replica failback. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet undoes CDP replica failback." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrcdpreplicafailback.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP Failback > Stop-VBRCDPReplicaFailback" dateModified: "2026-08-19" --- # Stop-VBRCDPReplicaFailback ## Short Description Undoes a CDP replica failback. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRCDPReplicaFailback -Replica [-PowerOn] [-Force] [-RunAsync] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet undoes CDP replica failback. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will undo a failback for a CDP replica without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

PowerOn

Defines that the cmdlet will power on a CDP replica after failback stops.

If you do not provide this parameter, the cmdlet will not power on the replica.

Default: False.

SwitchParameter

False

Named

False

Replica

Specifies a CDP replica for which you want to undo failback.

Accepts the VBRCDPReplica object. To create this object, run the Get-VBRCDPReplica cmdlet.

VBRCDPReplica

True

Named

False

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

False

Confirm

Defines that the command returns the output object to the Windows PowerShell console.

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 will display a prompt that asks if you want to continue running the command.

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 ### Undoing Failback This example shows how to undo failback of the CDP replica of the `Win05` VM. ``` $replica = Get-VBRCDPReplica -Name "Win05" Stop-VBRCDPReplicaFailback -Replica $replica -RunAsync ``` Perform the following steps: 1. Run the [`Get-VBRCDPReplica`](get-vbrcdpreplica.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$replica` variable. 2. Run the `Stop-VBRCDPReplicaFailback` cmdlet. Set the `$replica` variable as the `Replica` parameter. Provide the `RunAsync` parameter. ::: ## Related Commands [`Get-VBRCDPReplica`](get-vbrcdpreplica.md)