Stop-VBRvCDReplicaFailback
Short Description
Stops a Cloud Director replica failback.
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VBRvCDReplicaFailback -RestorePoint <COib> [-PowerOn] [-Force] [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet stops a Cloud Director replica failback.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Force |
Defines that the cmdlet will perform failover without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
PowerOn |
Defines that the cmdlet will power on replica VM after the failover. Otherwise, you will need to power on the replica VM manually. |
|
False |
Named |
False |
|
RestorePoint |
Specifies the restore point of the Cloud Director replica. The cmdlet will stop failback of this replica.
Accepts the |
|
True |
Named |
False |
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
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 |
|
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. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Undoing Failover
This example shows how to undo failback to the the WebServer Cloud Director replica.
|
$restorepoint = Get-VBRRestorePoint -Name "WebServer" Stop-VBRvCDReplicaFailback -RestorePoint $restorepoint[3] -RunAsync |
Perform the following steps:
- Run the
Get-VBRRestorePointReturns restore points. cmdlet. Specify theNameparameter value. Save the result to the$restorepointvariable.The
Get-VBRRestorePointcmdlet 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). - Run the
Stop-VBRvCDReplicaFailovercmdlet. Set the$restorepointvariable as theRestorePointparameter value. Provide theRunAsyncparameter.
Related Commands
Get-VBRRestorePointReturns restore points.