--- title: "Get-VBRFailbackSwitchingSchedule" description: "This cmdlet returns the failback switching schedule." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrfailbackswitchingschedule.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > Two-Phase Failback > Get-VBRFailbackSwitchingSchedule" dateModified: "2026-08-19" --- # Get-VBRFailbackSwitchingSchedule ## Short Description Returns the failback switching schedule. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRFailbackSwitchingSchedule -Replica [] ``` ## 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 failback switching schedule.

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

VBRReplica

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object This cmdlet defines the `VBRFailbackSwitchingSchedule` object that defines the failback switching schedule settings. ## Examples ::: example ### Getting Failback Switching Schedule This example shows how to get failback switching replica schedule of the CDP replica of the `Win05` VM. ``` $replica = Get-VBRCDPReplica -Name "Win05" Get-VBRFailbackSwitchingSchedule -Replica $replica ``` Perform the following steps: 1. Run the [`Get-VBRCDPReplica`](get-vbrcdpreplica.md) 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`](get-vbrcdpreplica.md)