This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRJobScheduleOptions

In this article

    Short Description

    Returns scheduling settings for a selected job.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Standard, Enterprise, Enterprise Plus

    Syntax

    Get-VBRJobScheduleOptions [-Job] <CBackupJob[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

    Related Commands

    Get-VBRJob

    Detailed Description

    This cmdlet returns job scheduling options for a selected job.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies the job you want to get the scheduling options of.

    True

    1

    True (ByValue,
    ByProperty
    Name)

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example 1

    This command looks for the list of schedulling options of the job named "ActiveDirectory Copy Job". The job is obtained with Get-VBRJob and piped down.

    PS C:\PS> Get-VBRJob -Name "ActiveDirectory Copy Job" | Get-VBRJobScheduleOptions

    Example 2

    This command looks for the list of options of the job represented by the '$activedirectory_copy_job' variable. The job is obtained with Get-VBRJobObject and assigned to the variable beforehand.

    PS C:\PS> Get-VBRJobScheduleOptions -Job $activedirectory_copy_job