--- title: "Disable-VBRSureBackupJob" description: "This cmdlet disables running SureBackup jobs. Run the Enable-VBRSureBackupJob cmdlet to enable SureBackup jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrsurebackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > SureBackup > SureBackup Jobs > Disable-VBRSureBackupJob" dateModified: "2026-08-19" --- # Disable-VBRSureBackupJob ## Short Description Disables running SureBackup jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRSureBackupJob -Job [] ``` ## Detailed Description This cmdlet disables running SureBackup jobs. Run the [`Enable-VBRSureBackupJob`](enable-vbrsurebackupjob.md) cmdlet to enable SureBackup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies a SureBackup job. The cmdlet will disable this job.

Accepts the VBRSureBackupJobBase object. To create this object, run the Get-VBRSureBackupJob cmdlet.

VBRSureBackupJobBase

True

Named

True (ByPropertyName, ByValue)

`` 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 SureBackup Job This example shows how to disable the `Job01` SureBackup job. ``` $surejob = Get-VBRSureBackupJob -Name "Job01" Disable-VBRSureBackupJob -Job $surejob ``` Perform the following steps: 1. Run the [`Get-VBRSureBackupJob`](get-vbrsurebackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$surejob` variable. 2. Run the `Disable-VBRSureBackupJob` cmdlet. Set the `$surejob` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VBRSureBackupJob`](get-vbrsurebackupjob.md)