--- title: "Start-VBRvCDReplicaJob" description: "This cmdlet starts Cloud Director replication jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrvcdreplicajob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replication Job > Start-VBRvCDReplicaJob" dateModified: "2026-08-19" --- # Start-VBRvCDReplicaJob ## Short Description Starts Cloud Director replication jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Start-VBRvCDReplicaJob -Job [-RunAsync] [] ``` ## Detailed Description This cmdlet starts Cloud Director replication jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of Cloud Director replication jobs that you want to start.

Accepts the VBRvCDReplicaJob[] object. To get this object, run the Get-VBRvCDReplicaJob cmdlet.

VBRvCDReplicaJob[]

True

Named

True (ByPropertyName, ByValue)

RunAsync

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

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 ### Starting Cloud Director Replication Jobs This example shows how to start all Cloud Director replication jobs that are added to the backup infrastructure. ``` $replicavCD = Get-VBRvCDReplicaJob Start-VBRvCDReplicaJob -Job $replicavCD ``` Perform the following steps: 1. Run the [`Get-VBRvCDReplicaJob`](get-vbrvcdreplicajob.md) cmdlet. Save the result to the `$replicavCD` variable. 2. Run the `Start-VBRvCDReplicaJob` cmdlet. Set the `$replicavCD` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRvCDReplicaJob`](get-vbrvcdreplicajob.md)