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

Set-VSBJobOptions

In this article

    Short Description

    Applies custom SureBackup job options.

    Applies to

    Platform: VMware

    Product Edition: Enterprise, Enterprise Plus

    Syntax

    Set-VSBJobOptions [-Job] <CSbJob> [-Options] <CDRJobOptions> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

    Related Commands

    Get-VSBJob

    Detailed Description

    This cmdlet applies customized job options to SureBackup jobs.

    To customize the SureBackup job options you need to first run the New-VSBJobOptions cmdlet. New-VSBJobOptions returns the CDRJobOptions object containing the set of default SureBackup job options. You can customize any of these options and apply further to a SureBackup job.

    Run Set-VBRJobOptions to edit job options of backup, replication or copy job.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Job

    Specifies the SureBackup job for which you want to customize the job options.

    You can assign multiple jobs to this object.

    True

    1

    True (ByValue,
    ByProperty
    Name)

    False

    Options

    Specifies the custom SureBackup job options.

    Accepts CDRJobOptions object.

    True

    2

    False

    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 applies the customized options to the SUreBackup job named "SureBackup Job 01". The job object is obtained with Get-VSBJob and piped down. The options to apply are set to the $"Sure Options" variable beforehand by running New-VSBJobOptions.

    PS C:\PS> Get-VBRJob -Name "SureBackup Job 01" | Set-VSBJobOptions -Options $"Sure Options"

    Example 2

    This command applies the customized job options to the SureBackup job represented by the $SureJob variable. The job is obtained with Get-VSBJob and assigned to the variable beforehand. The options to apply are set to the $"Sure Options" variable beforehand by running New-VSBJobOptions.

    PS C:\PS> Set-VBRJobScheduleOptions -Job $SureJob -Options $"Sure Options"