--- title: "Stop-VBRAzureInstantRecovery" description: "This cmdlet stops the specified Instant Recovery to Microsoft Azure operation." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrazureinstantrecovery.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant Recovery to Microsoft Azure > Recovery and Finalization > Stop-VBRAzureInstantRecovery" dateModified: "2026-08-19" --- # Stop-VBRAzureInstantRecovery ## Short Description Stops the specified Instant Recovery to Microsoft Azure operation. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRAzureInstantRecovery [-InstantRecovery] [-RunAsync] [] ``` ## Detailed Description This cmdlet stops the specified Instant Recovery to Microsoft Azure operation. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

InstantRecovery

Specifies an array of Instant Recovery to Microsoft Azure operations that you want to stop.

Accepts the VBRAzureInstantRecovery[] object. To create or get this object, run the Start- VBRAzureInstantRecovery, Start-VBRAzureInstantRecoveryMigration or Get-VBRAzureInstantRecovery cmdlet.

VBRAzureInstantRecovery[]

True

0

True (ByPropertyName, ByValue)

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 ### Example 1. Stopping Instant Recovery to Microsoft Azure Operation This example shows how to stop the Instant Recovery to Microsoft Azure operation. ``` $session = Get-VBRAzureInstantRecovery -Id "d1d2a50e-8052-498f-826b-e5c86f30ed5a" Stop-VBRAzureInstantRecovery -InstantRecovery $session ``` Perform the following steps: 1. Run the [`Get-VBRAzureInstantRecovery`](get-vbrazureinstantrecovery.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$operation` variable. 2. Run the `Stop-VBRAzureInstantRecovery` cmdlet. Set the `$session` variable as the `InstantRecovery` parameter value. ::: ## Related Commands - [`New-VBRAzureInstantRecoverySwitchingOptions`](new-vbrazureinstantrecoveryswitchingoptions.md) - [`Get-VBRAzureInstantRecovery`](get-vbrazureinstantrecovery.md)