--- title: "Start-VBRHighAvailabilityClusterSwitchover" description: "Starts switchover of an HA cluster. Product Edition: Premium This cmdlet starts switchover of an HA cluster. During switchover, Veeam Backup & Replication will assign the role of the primary node to the secondary node and will start the reverse repli" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrhighavailabilityclusterswitchover.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > High Availability Cluster > Start-VBRHighAvailabilityClusterSwitchover" dateModified: "2026-08-19" --- # Start-VBRHighAvailabilityClusterSwitchover ## Short Description Starts switchover of an HA cluster. **Product Edition**: Premium ## Syntax ``` Start-VBRHighAvailabilityClusterSwitchover [-RunAsync] [-Force] [] ``` ## Detailed Description This cmdlet starts switchover of an HA cluster. During switchover, Veeam Backup & Replication will assign the role of the primary node to the secondary node and will start the reverse replication from a new primary node to the former primary node. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will start switchover of a HA cluster without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

False

`` 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). ## Examples ::: example ### Starting Switchover of HA cluster This command starts switchover of the HA cluster. ``` Start-VBRHighAvailabilityClusterSwitchover -RunAsync ``` :::