--- title: "Disable-VBRApplicationBackupJob" description: "Disables application backup policies. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet disables application backup policies. Run the Enable-VBRApplicationBackupJobEnables application backup policies." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrapplicationbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policies > Disable-VBRApplicationBackupJob" dateModified: "2026-08-19" --- # Disable-VBRApplicationBackupJob ## Short Description Disables application backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRApplicationBackupJob [-Job] [-PassThru] [] ``` ## Detailed Description This cmdlet disables application backup policies. Run the [`Enable-VBRApplicationBackupJob`](enable-vbrapplicationbackupjob.md) cmdlet to enable application backup policies. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies an application backup policy that you want to disable.

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

VBRApplicationBackupJobBase[]

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 `VBRApplicationBackupJobBase[]` object that contains settings of disabled application backup policies. ## Examples ::: example ### Disabling Application Backup Policy This example shows how to disable the `DbsSrv2049` application backup policy. ``` $job = Get-VBRApplicationBackupJob -Name "DbsSrv2049" Disable-VBRApplicationBackupJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRApplicationBackupJob`](get-vbrapplicationbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Disable-VBRApplicationBackupJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRApplicationBackupJob`](get-vbrapplicationbackupjob.md)