--- title: "Remove-VBRvCDReplica" description: "This cmdlet removes Cloud Director replicas." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrvcdreplica.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replication Job > Remove-VBRvCDReplica" dateModified: "2026-08-19" --- # Remove-VBRvCDReplica ## Short Description Removes Cloud Director replicas. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet removes Cloud Director replicas. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will remove a Cloud Director without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

FromDisk

Defines that the cmdlet will remove a Cloud Director replica from a disk.

SwitchParameter

True

Named

False

Replica

Specifies a Cloud Director replica that you want to remove.

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

VBRvCDReplica

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 ### Removing Cloud Director Replica This cmdlet removes a Cloud Director replica from the backup infrastructure. ``` $replica = Get-VBRvCDReplica -Id "2a7c321c-c8cf-4aec-9332-93882e69c667" Remove-VBRvCDReplica -Replica $replica ``` Perform the following steps: 1. Run the [`Get-VBRvCDReplica`](get-vbrvcdreplica.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$replica` variable. 2. Run the `Remove-VBRvCDReplica` cmdlet. Set the `$replica` variable as the `Replica` parameter value. ::: ## Related Commands [`Get-VBRvCDReplica`](get-vbrvcdreplica.md)