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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies a Veeam Agent backup job or a Veeam Agent backup policy that you want to disable.

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

VBRComputerBackupJob[]

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). ## Output Object This cmdlet returns the `VBRComputerBackupJob` object that contains settings of disabled Veeam Agent backup jobs and Veeam Agent backup policies. ## Examples ::: example ### Disabling Veeam Agent backup Job This example shows how to disable the `WinSrv2049` Veeam Agent Backup Job. ``` $job = Get-VBRComputerBackupJob -Name "WinSrv2049" Disable-VBRComputerBackupJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Disable-VBRComputerBackupJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md)