--- title: "New-VBRAzureInstantRecoverySwitchingOptions" description: "This cmdlet defines the switchover options. Switchover can be performed automatically, manually or at the specified date and time." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrazureinstantrecoveryswitchingoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant Recovery to Microsoft Azure > Recovery and Finalization > New-VBRAzureInstantRecoverySwitchingOptions" dateModified: "2026-08-19" --- # New-VBRAzureInstantRecoverySwitchingOptions ## Short Description Defines the switchover options. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRAzureInstantRecoverySwitchingOptions -SwitchingType [-ScheduleTime ] [-VerifyVMBoot] [-PowerOnVm] [] ``` ## Detailed Description This cmdlet defines the switchover options. Switchover can be performed automatically, manually or at the specified date and time. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

PowerOnVm

Defines that the cmdlet powers on the recovered workload after the switchover.

Default: True.

SwitchParameter

False

Named

False

ScheduleTime

For the SwitchingType parameter set to Scheduled.

Specifies the date and time when you want to perform the switchover.

DateTime

False

Named

False

SwitchingType

Specifies the type of switchover:

  • Auto: use this option to start the switchover process (the second phase of migration) automatically right after the first phase of migration finishes.

  • Manual: use this option to start the switchover process manually.

    To start the switchover manually, use the Switch-VBRAzureInstantRecoveryMigration cmdlet.

  • Scheduled: use this option to start the switchover process at the specified date and time. To specify the time, use the ScheduleTime parameter.

VBRAzureInstantRecoverySwitchingType

True

Named

True (ByPropertyName, ByValue)

VerifyVMBoot

Defines that Veeam Backup & Replication checks if the recovered workload boots successfully.

Default: False.

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). ## Output Object [`VBRAzureInstantRecoverySwitchingOptions`](vbrazureinstantrecoveryswitchingoptions.md) ## Examples ::: example ### Example 1. Creating Switchover Options for Manual Switchover This command shows how to create switchover options. The switchover will be performed manually, after the switchover the VM will be powered on. ``` $switchingOptions = New-VBRAzureInstantRecoverySwitchingOptions -SwitchingType Manual -PowerOnVm ``` :::