--- title: "Enable-VBRBackupCopyJob" description: "Enables backup copy jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet enables backup copy jobs. Run the Disable-VBRBackupCopyJobDisables backup copy jobs. cmdlet to disable backup copy jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrbackupcopyjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Copy > Backup Copy Jobs for VMs and Physical Machines > Enable-VBRBackupCopyJob" dateModified: "2026-08-20" --- # Enable-VBRBackupCopyJob ## Short Description Enables backup copy jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Enable-VBRBackupCopyJob [-Job] [-PassThru] [] ``` ## Detailed Description This cmdlet enables backup copy jobs. Run the [`Disable-VBRBackupCopyJob`](disable-vbrbackupcopyjob.md) cmdlet to disable backup copy jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an array of backup copy jobs that you want to enable.

Accepts the VBRBackupCopyJob[] object. To create this object, run the Get-VBRBackupCopyJob cmdlet.

VBRBackupCopyJob[]

True

0

True (ByPropertyName, ByValue)

PassThru

Defines that the command returns the output object to the Windows PowerShell console.

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 ### Enabling Backup Copy Job This example shows how to enable a backup copy job. ``` $job = Get-VBRBackupCopyJob Enable-VBRBackupCopyJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRBackupCopyJob`](get-vbrbackupcopyjob.md) cmdlet. Save the result to the `$job` variable. 2. Run the `Enable-VBRBackupCopyJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRBackupCopyJob`](get-vbrbackupcopyjob.md)