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

Get-VBRFailbackSwitchingSchedule

Short Description

Returns the failback switching schedule.

Applies to

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

Syntax

Get-VBRFailbackSwitchingSchedule -Replica <VBRvCDReplica>  [<CommonParameters>]

Detailed Description

This cmdlet returns the failback switching schedule.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Replica

Specifies a CDP replica for which you want to get a failback switching schedule.

Accepts the VBRCDPReplica object. To create this object, run the Get-VBRCDPReplica cmdlet.

True

Named

True (ByValue, ByPropertyName)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

This cmdlet defines the VBRFailbackSwitchingSchedule object that defines the failback switching schedule settings.

Examples

Getting Failback Switching Schedule

This example shows how to get a failback switching replica schedule of the Win05_replicant CDP replica.

$replica = Get-VBRCDPReplica -Name "Win05_replicant"

Get-VBRFailbackSwitchingSchedule -Replica $replica

Perform the following steps:

  1. Run the Get-VBRCDPReplica cmdlet. Specify the Name parameter value. Save the result to the $replica variable.
  2. Run the Get-VBRFailbackSwitchingSchedule cmdlet. Set the $replica variable as the Replica parameter.

Related Commands

Get-VBRCDPReplica