--- title: "Stop-VBRFCDInstantRecovery" description: "This cmdlet stops the FCD instant recovery session." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrfcdinstantrecovery.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant First Class Disk (FCD) Recovery > Stop-VBRFCDInstantRecovery" dateModified: "2026-08-19" --- # Stop-VBRFCDInstantRecovery ## Short Description Stops the FCD instant recovery session. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRFCDInstantRecovery [-Session] [-Force] [-RunAsync] [] ``` ## Detailed Description This cmdlet stops the FCD instant recovery session. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will stop FCD instant recovery session 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

Session

Specifies an FCD instant recovery session that you want to stop.

Accepts the VBRFCDInstantRecoverySession object. To get this object, run the Get-VBRFCDInstantRecoverySession cmdlet.

VBRFCDInstantRecoverySession

True

0

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 ### Stopping FCD Instant Recovery Session This example shows how to stop the Id `49664A5F-9C55-4A1F-8E6A-1CD5705A684B` FCD instant recovery session. ``` $fcdInstantRecovery = Get-VBRFCDInstantRecoverySession -Id "49664A5F-9C55-4A1F-8E6A-1CD5705A684B" Stop-VBRFCDInstantRecovery -Session $fcdInstantRecovery ``` Perform the following steps: 1. Run the [`Get-VBRFCDInstantRecoverySession`](get-vbrfcdinstantrecoverysession.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$fcdInstantRecovery` variable. 2. Run the `Stop-VBRFCDInstantRecovery` cmdlet. Set the `$fcdInstantRecovery` variable as the `Session` parameter value. ::: ## Related Commands [`Get-VBRFCDInstantRecoverySession`](get-vbrfcdinstantrecoverysession.md)