--- title: "Stop-VBRvCDReplicaFailover" description: "This cmdlet stops Cloud Director replica failover." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrvcdreplicafailover.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replica Failover > Stop-VBRvCDReplicaFailover" dateModified: "2026-08-19" --- # Stop-VBRvCDReplicaFailover ## Short Description Stops Cloud Director replica failover. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRvCDReplicaFailover -RestorePoint [-RunAsync] [-Force] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet stops Cloud Director replica failover. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will perform failover without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

RestorePoint

Specifies a restore point of a production vApp. The cmdlet will stop failover to this vApp.

Accepts the COib object. To get this object, run the Get-VBRRestorePoint cmdlet.

COib

True

Named

True (ByPropertyName, ByValue)

RunAsync

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

SwitchParameter

False

Named

False

Confirm

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

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 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 ### Undoing Failover This example shows how to undo failover of the `WebServer` Cloud Director replica. ``` $restorepoint = Get-VBRRestorePoint -Name "WebServer" Stop-VBRvCDReplicaFailover -RestorePoint $restorepoint[3] -RunAsync ``` Perform the following steps: 1. Run the [`Get-VBRRestorePoint`](get-vbrrestorepoint.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$restorepoint` variable. The `Get-VBRRestorePoint` cmdlet will return an array of restore points. Mind the ordinal number of the necessary restore point (in our example, it is the fourth restore point in the array). 2. Run the `Stop-VBRvCDReplicaFailover` cmdlet. Set the `$restorepoint` variable as the `RestorePoint` parameter value. Provide the `RunAsync` parameter. ::: ## Related Commands [`Get-VBRCDPReplica`](get-vbrcdpreplica.md)