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

Get-VSBJobScheduleOptions

In this article

    Short Description

    Returns scheduling settings of a selected SureBackup job.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Enterprise, Enterprise Plus

    Syntax

    Get-VSBJobScheduleOptions [-Job] <CSbJob> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

    Related Commands

    Get-VSBJob

    Detailed Description

    This cmdlet returns scheduling options for a specified SureBackup job.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies the SureBackup job you want to get the scheduling settings 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 job settings for the SureBackup job named "SureJob 02". The SureBackup job is obtained with Get-VSBJob and piped down.

    PS C:\PS> Get-VSBJob -Name "SureJob 02" | Get-VSBJobScheduleOptions

    Example 2

    This command looks for the list of job settings for the SureBackup job represented by the $SureJob variable. The SureBackup job is obtained with Get-VSBJob and assigned to the variable beforehand.

    PS C:\PS> Get-VSBJobScheduleOptions -Job $SureJob