New-VBRDailyOptions

Short Description

Creates new job daily schedule settings.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

New-VBRDailyOptions [-DayOfWeek <DayOfWeek[]>] [-Period <TimeSpan>] [-Type <VBRDailyOptionsType>]  [<CommonParameters>]

Detailed Description

This cmdlet creates the VBRDailyOptions object. This object contains job daily schedule settings. You can use this object to set job schedule.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Type

Specifies the job schedule type:

  • Everyday: the job will run every day.
  • WeekDays: the job will run Monday to Friday.
  • SelectedDays: the job will run on selected days. Use the DaysOfWeek parameter to set the days.

VBRDailyOptionsType

False

Named

False

DayOfWeek

Specifies the day of week when the job will run.

Default: Saturday.

DayOfWeek[]

False

Named

False

Period

Specifies the time when the job will start.

Default: 18:00.

TimeSpan

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRDailyOptions

Examples

New-VBRDailyOptionsExample 1. Creating Schedule for Every Friday

This example shows how to create schedule with the following settings: every Friday at 23:00.

$fridayoptions = New-VBRDailyOptions -DayOfWeek Friday -Period 23:00

Perform the following steps:

  1. Run the New-VBRDailyOptions cmdlet. Specify the DayOfWeek parameter value. Specify the Period parameter value.
  2. Save the result to the $fridayoptions variable.

New-VBRDailyOptionsExample 2. Creating Schedule for Everyday

This example shows how to create schedule with the following settings: everyday at 20:00.

$everydayoptions = New-VBRDailyOptions -Type Everyday -Period 20:00

Perform the following steps:

  1. Run the New-VBRDailyOptions cmdlet. Specify the Type parameter value. Specify the Period parameter value.
  2. Save the result to the $everydayoptions variable.

New-VBRDailyOptionsExample 3. Creating Schedule for Weekends

This example shows how to create schedule with the following settings: on weekends at 18:00.

$weekendoptions = New-VBRDailyOptions -DayOfWeek Saturday, Sunday

Perform the following steps:

  1. Run the New-VBRDailyOptions cmdlet. Specify the DayOfWeek parameter value.
  2. Save the result to the $weekendoptions variable.