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

Set-VSBJobScheduleOptions

Short Description

Applies customized job scheduling options to a selected SureBackup job.  

Applies to

Platform: VMware

Product Edition: Enterprise, Enterprise Plus

Syntax

Set-VSBJobScheduleOptions [-Job] <CSbJob> [-Options] <ScheduleOptions> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

Related Commands

Get-VSBJob

New-VBRJobScheduleOptions

Detailed Description

This cmdlet applies customized scheduling options to a selected SureBackup job.

To customize the scheduling options you need to first run the New-VBRJobScheduleOptions cmdlet. New-VBRJobScheduleOptions returns the ScheduleOptions object containing the set of default scheduling options. You can customize any of these options and apply further to any kind of jobs.

Run Set-VBRJobScheduleOptions to set scheduling 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 change the scheduling options.

You can assign multiple SureBackup jobs to this object.

True

1

True (ByValue,
ByProperty
Name)

False

Options

Specifies the custom scheduling options.

Accepts ScheduleOptions 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 scheduling options to the SureBackup jobs named "SharePoint SureJob" and "MailServer SureJob". The jobs are obtained with Get-VSBJob and piped down. The options to apply are set to the $"Schedule Options" variable beforehand by running New-VBRJobScheduleOptions.

PS C:\PS> Get-VSBJob -Name "SharePoint SureJob", "MailServer SureJob" | Set-VSBJobScheduleOptions -Options $"Schedule Options"

Example 2

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

PS C:\PS> Set-VSBJobScheduleOptions -Job $SureJob -Options $"Schedule Options"