Edit

Share via


Set-WBSchedule

Sets the current schedule for backups.

Syntax

Default (Default)

Set-WBSchedule
    [-Policy] <WBPolicy>
    [-Schedule] <DateTime[]>
    [<CommonParameters>]

Description

The Set-WBSchedule cmdlet sets the current schedule for backups and saves the settings in the WBPolicy object.

The WBPolicy object must be in edit mode. To put the WBPolicy object in edit mode, use the Get-WBPolicy cmdlet with the Editable parameter. The New-WBPolicy cmdlet creates a WBPolicy object that is already in edit mode.

To use this cmdlet, you must be a member of the Administrators group or Backup Operators group.

Examples

Example 1: Set a backup policy schedule

PS C:\> $Policy = Get-WBPolicy
PS C:\> Set-WBSchedule -Policy $Policy -Schedule 12:00,09:00

This example sets the scheduled times to create backups and saves the information in the WBPolicy object. When you set this policy on the computer, backups are created daily at the specified times.

The first command stores the result of the Get-WBPolicy in the variable named $Policy.

The second command sets the backup schedule in the $Policy variable. The Schedule parameter indicates the times.

Parameters

-Policy

Specifies the WBPolicy object to update.

Parameter properties

Type:WBPolicy
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:0
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-Schedule

Specifies the times of day to create a backup. Time values are formatted as HH:MM and separated by a comma.

Parameter properties

Type:

DateTime[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:1
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

Microsoft.Windows.ServerBackup.Commands.WBPolicy

DateTime

This cmdlet references a Datetime object for the scheduled times and the WBPolicy object for the backup policy to update.

Outputs

Object