Remove-VBRvCDReplica

Short Description

Removes vCD replicas.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Removes vCD replicas from the backup infrastructure.

Remove-VBRvCDReplica -Replica <VBRvCDReplica> [-Force] [-WhatIf] [-Confirm]  [<CommonParameters>]

  • Removes vCD replicas from disk.

Remove-VBRvCDReplica -Replica <VBRvCDReplica> -FromDisk [-RunAsync] [-Force] [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes vCD replicas.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Replica

Specifies a vCD replica that you want to remove.

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

True

Named

False

FromDisk

Defines that the cmdlet will remove a vCD replica from a disk.

SwitchParameter

False

Named

False

RunAsync

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

SwitchParameter

False

Named

False

Force

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

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

Confirm

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

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Removing vCD Replica

This cmdlet removes a vCD 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 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