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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

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

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

VBRComputerBackupCopyJob[]

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