Set-WBSchedule

Set-WBSchedule

Sets the current schedule for backups.

Sintaxis

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

Descripción detallada

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.

Parámetros

-Policy<WBPolicy>

Specifies the WBPolicy object to update.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Schedule<DateTime[]>

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

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • WBPolicy,Datetime []

    The Set-WBSchedule cmdlet references a Datetime object for the scheduled times and the WBPolicy object for the backup policy to update.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • DateTime[]

    The Set-WBSchedule cmdlet returns the Datetime list that you use to update the policy.

Ejemplos

Example 1: Set a backup policy schedule

This command 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.

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

Temas relacionados

Get-WBPolicy

Get-WBSchedule