--- title: "Enable-VBRvCDReplicaJob" description: "This cmdlet enables Cloud Director replication jobs that were previously disabled. Run the Disable-VBRvCDReplicaJob cmdlet to disable Cloud Director replication jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrvcdreplicajob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replication Job > Enable-VBRvCDReplicaJob" dateModified: "2026-08-19" --- # Enable-VBRvCDReplicaJob ## Short Description Enables Cloud Director replication jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Enable-VBRvCDReplicaJob -Job [] ``` ## Detailed Description This cmdlet enables Cloud Director replication jobs that were previously disabled. Run the [`Disable-VBRvCDReplicaJob`](disable-vbrvcdreplicajob.md) cmdlet to disable Cloud Director replication jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of Cloud Director replication jobs.The cmdlet will enable these jobs.

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

VBRvCDReplicaJob[]

True

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). ## Examples ::: example ### Enabling Cloud Director Replication Jobs This example shows how to enable Cloud Director replication jobs. ``` $replicavCD = Get-VBRvCDReplicaJob Enable-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 `Enable-VBRvCDReplicaJob` cmdlet. Set the `$replicavCD` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRvCDReplicaJob`](get-vbrvcdreplicajob.md)