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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of Ids for Cloud Director replicas. The cmdlet will return a list of Cloud Director replicas with the specified IDs.

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of names for Cloud Director replicas. The cmdlet will return a list of Cloud Director replicas with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

`` 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). ## Output Object The cmdlet returns the `VBRvCDReplica` object that contains Cloud Director replicas settings. ## Examples ::: example ### Example 1. Getting Cloud Director Replicas by Name This command returns the `vCD_05j` Cloud Director replicas. ``` Get-VBRvCDReplica -Name "vCD_05j" ``` ::: ::: example ### Example 2. Getting Cloud Director Replicas by ID This command returns the `2a7c321c-c8cf-4aec-9332-93882e69c667` Cloud Director replicas. ``` Get-VBRvCDReplica -Id "2a7c321c-c8cf-4aec-9332-93882e69c667" ``` ::: ::: example ### Example 3. Getting all Cloud Director Replicas Jobs This command returns all Cloud Director replicas that are added to the backup infrastructure. ``` Get-VBRvCDReplica ``` :::