--- title: "Enable-VSBJobSchedule (obsolete)" description: "This cmdlet enables a SureBackup job schedule. You can enable the job schedule in case the schedule is pre-configured for a selected job." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vsbjobschedule.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Enable-VSBJobSchedule (obsolete)" dateModified: "2026-08-19" --- # Enable-VSBJobSchedule ## Short Description Enables a 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 ``` Enable-VSBJobSchedule [-Job ] [] ``` ## Detailed Description This cmdlet enables a SureBackup job schedule. You can enable the job schedule in case the schedule is pre-configured for a selected job. You can enable the schedule that was configured in a disabled state or that was disabled with the [`Disable-VSBJobSchedule`](disable-vsbjobschedule.md) cmdlet. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

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