--- title: "Stop-VBRUnstructuredBackupFLRSession" description: "Stops restore sessions started to recover backups created by file backup jobs or object storage backup jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet stops restore sessions started to recover backups" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrunstructuredbackupflrsession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Unstructured Data Recovery > Stop-VBRUnstructuredBackupFLRSession" dateModified: "2026-08-19" --- # Stop-VBRUnstructuredBackupFLRSession ## Short Description Stops restore sessions started to recover backups created by file backup jobs or object storage backup jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRUnstructuredBackupFLRSession -Session [-RunAsync] [] ``` ## Detailed Description This cmdlet stops restore sessions started to recover backups created by file backup jobs or object storage backup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RunAsync

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

SwitchParameter

False

Named

False

Session

Specifies a restore session. The cmdlet will stop this restore session.

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

VBRUnstructuredBackupFLRSession

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). ## Examples ::: example ### Stopping Restore Session Running to Recover Unstructured Data This example shows how to stop a restore session that is started to recover backups created by file backup jobs and object storage backup jobs. ``` $session = Get-VBRUnstructuredBackupFLRSession Stop-VBRUnstructuredBackupFLRSession -Session $session ``` Perform the following steps: 1. Run the [`Get-VBRUnstructuredBackupFLRSession`](get-vbrunstructuredbackupflrsession.md) cmdlet. Save the result to the `$session` variable. 2. Run the `Stop-VBRUnstructuredBackupFLRSession` cmdlet. Set the `$session` variable as the `Session` parameter value. ::: ## Related Commands [`Get-VBRUnstructuredBackupFLRSession`](get-vbrunstructuredbackupflrsession.md)