--- title: "Disable-VSBJob (obsolete)" description: "Puts a selected SureBackup job on hold. This cmdlet is obsolete. Run the Disable-VBRSureBackupJobDisables running SureBackup jobs. cmdlet instead." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vsbjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Disable-VSBJob (obsolete)" dateModified: "2026-08-19" --- # Disable-VSBJob ## Short Description Puts a selected SureBackup job on hold. ::: note This cmdlet is obsolete. Run the [`Disable-VBRSureBackupJob`](disable-vbrsurebackupjob.md) cmdlet instead. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VSBJob [-Job ] [] ``` ## Detailed Description This cmdlet puts a selected SureBackup job on hold. The job and its settings are not deleted from Veeam Backup & Replication. You can enable the job at any time by running the [`Enable-VSBJob`](enable-vsbjob.md) cmdlet. Run the [`Stop-VSBJob`](stop-vsbjob.md) cmdlet to stop the job once without disabling it. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the SureBackup job you want to disable.

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

CSbJob[]

False

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 ### Example 1. Disabling SureBackup Job This example shows how to put the `Verification Job` SureBackup job on hold. ```powershell $job = Get-VSBJob -Name "Verification Job" Disable-VSBJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VSBJob`](get-vsbjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Disable-VSBJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VSBJob`](get-vsbjob.md)