--- title: "Disable-VBRComputerBackupCopyJob" description: "Disables Veeam Agent backup copy jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet disables Veeam Agent backup copy jobs. Run the Enable-VBRComputerBackupCopyJobEnables Veeam Agent backup copy jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrcomputerbackupcopyjob_agent.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Backup Copy Jobs > Disable-VBRComputerBackupCopyJob" dateModified: "2026-08-19" --- # Disable-VBRComputerBackupCopyJob ## Short Description Disables Veeam Agent backup copy jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRComputerBackupCopyJob [-Job] [-PassThru] [] ``` ## Detailed Description This cmdlet disables Veeam Agent backup copy jobs. Run the [`Enable-VBRComputerBackupCopyJob`](enable-vbrcomputerbackupcopyjob.md) cmdlet to enable 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 disable.

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 ### Disabling Veeam Agent Backup Copy Jobs This example shows how to disable Veeam Agent Backup copy jobs. ``` $jobs = Get-VBRComputerBackupCopyJob Disable-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 `Disable-VBRComputerBackupCopyJob` cmdlet. Set the `$jobs` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRComputerBackupCopyJob`](get-vbrcomputerbackupcopyjob.md)