--- title: "Disable-VSBJobSchedule (obsolete)" description: "This cmdlet disables a selected SureBackup job schedule. The schedule settings are not deleted. When you disable a job schedule, you can launch the job manually by running the Start-VSBJob cmdlet." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vsbjobschedule.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Disable-VSBJobSchedule (obsolete)" dateModified: "2026-08-19" --- # Disable-VSBJobSchedule ## Short Description Disables a selected SureBackup job schedule. ::: note This cmdlet is obsolete. The cmdlet will still work but may not be supported in further versions. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VSBJobSchedule [-Job ] [] ``` ## Detailed Description This cmdlet disables a selected SureBackup job schedule. The schedule settings are not deleted. When you disable a job schedule, you can launch the job manually by running the [`Start-VSBJob`](start-vsbjob.md) cmdlet. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the array of SureBackup jobs. The cmdlet will disable schedule of these jobs.

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 Schedule This example shows how to disable the schedule of the `Verification Job` SureBackup job. ```powershell $job = Get-VSBJob -Name "Verification Job" Disable-VSBJobSchedule -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-VSBJobSchedule` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VSBJob`](get-vsbjob.md)