--- title: "Disable-VBRvCDReplicaJob" description: "This cmdlet disables Cloud Director replication jobs. Run the Enable-VBRvCDReplicaJob cmdlet to enable Cloud Director replication jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrvcdreplicajob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replication Job > Disable-VBRvCDReplicaJob" dateModified: "2026-08-19" --- # Disable-VBRvCDReplicaJob ## Short Description Disables Cloud Director replication jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRvCDReplicaJob -Job [] ``` ## Detailed Description This cmdlet disables Cloud Director replication jobs. Run the [`Enable-VBRvCDReplicaJob`](enable-vbrvcdreplicajob.md) cmdlet to enable 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 disable 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 ### Disabling Cloud Director Replication Jobs This example shows how to disable Cloud Director replication jobs. ``` $replicavCD = Get-VBRvCDReplicaJob Disable-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 `Disable-VBRvCDReplicaJob` cmdlet. Set the `$replicavCD` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRvCDReplicaJob`](get-vbrcdppolicy.md)