--- title: "Get-VBRJobScheduleOptions" description: "This cmdlet returns job scheduling options for a selected job." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrjobscheduleoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Jobs > Job Schedule > Get-VBRJobScheduleOptions" dateModified: "2026-08-19" --- # Get-VBRJobScheduleOptions ## Short Description Returns job scheduling settings. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRJobScheduleOptions [-Job] [] ``` ## Detailed Description This cmdlet returns job scheduling options for a selected job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the array of jobs. The cmdlet will return scheduling options of these jobs.

Accepts the CBackupJob object. To create this object, run the Get-VBRJob cmdlet.

CBackupJob[]

True

0

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. Looking for List of Scheduling Options of Specific Job [Using Pipeline] This example shows how to look for the list of scheduling options of the `ActiveDirectory Copy Job` job. ``` Get-VBRJob -Name "ActiveDirectory Copy Job" | Get-VBRJobScheduleOptions ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. 2. Pipe the cmdlet output to the `Get-VBRJobScheduleOptions` cmdlet. ::: ::: example ### Example 2. Looking for List of Options of Job Represented by Variable This example shows how to look for the list of options of the job represented by the `$activedirectory_copy_job` variable. ``` $activedirectory_copy_job = Get-VBRJob -Name "ActiveDirectory Copy Job" Get-VBRJobScheduleOptions -Job $activedirectory_copy_job ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$activedirectory_copy_job` variable. 2. Run the `Get-VBRJobScheduleOptions` cmdlet. Set the `$activedirectory_copy_job` variable as the `Job` parameter value. ::: ## Related Commands - [`Get-VBRJob`](get-vbrjob.md) - [`Get-VBRJobObject`](get-vbrjobobject.md)