--- title: "Stop-VEODRestoreSession" description: "Stops active restore sessions. Product: Veeam Backup for Microsoft 365 Product Edition: Community, Rental License, Subscription License This cmdlet stops an active Veeam Explorer for Microsoft OneDrive restore session." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/stop-veodrestoresession.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft OneDrive > Stop-VEODRestoreSession" dateModified: "2026-08-18" --- # Stop-VEODRestoreSession ## Short Description Stops active restore sessions. **Product**: Veeam Backup for Microsoft 365 **Product Edition**: Community, Rental License, Subscription License ## Syntax ``` Stop-VEODRestoreSession [-Session] [] ``` ## Detailed Description This cmdlet stops an active Veeam Explorer for Microsoft OneDrive restore session. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Session

Specifies a restore session that you want to stop.

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

VBOOneDriveItemRestoreSession

True

0

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Examples ::: example ### Stopping Restore Session This example shows how to stop a restore session for Veeam Explorer for Microsoft OneDrive. ``` $session = Get-VEODRestoreSession Stop-VEODRestoreSession -Session $session ``` Perform the following steps: 1. Run the [`Get-VEODRestoreSession`](get-veodrestoresession.md) cmdlet. Save the result to the `$session` variable. 2. Run the `Stop-VEODRestoreSession` cmdlet. Set the `$session` variable as the `Session` parameter value. ::: ## Related Commands [`Get-VEODRestoreSession`](get-veodrestoresession.md)