--- title: "Stop-VBRSharePointItemRestoreSession" description: "Stops active restore sessions initiated to perform operations with SharePoint databases. Product: Veeam Backup & Replication Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet stops active resto" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/stop-vbrsharepointitemrestoresession.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SharePoint > Stop-VBRSharePointItemRestoreSession" dateModified: "2026-08-18" --- # Stop-VBRSharePointItemRestoreSession ## Short Description Stops active restore sessions initiated to perform operations with SharePoint databases. **Product**: Veeam Backup & Replication **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRSharePointItemRestoreSession [-Session] [] ``` ## Detailed Description This cmdlet stops active restore sessions for Microsoft SharePoint initiated to perform operations with Microsoft SharePoint databases. ::: note - You can stop restore sessions that are created in the PowerShell console only. - The cmdlet will stop sessions that are initiated within the same PowerShell session only. - Restore sessions will not stop automatically if you close the PowerShell console without stopping the restore session first. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Session

Specifies a restore session that you want to stop.

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

SharePointRestoreSession

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 SharePoint. ``` $session = Get-VBRSharePointItemRestoreSession Stop-VBRSharePointItemRestoreSession -Session $session ``` Perform the following steps: 1. Run the [`Get-VBRSharePointItemRestoreSession`](get-vbrsharepointitemrestoresession.md) cmdlet. Save the result to the `$session` variable. 2. Run the `Stop-VBRSharePointItemRestoreSession` cmdlet. Set the `$session` variable as the `Session` parameter value. ::: ## Related Commands [`Get-VBRSharePointItemRestoreSession`](get-vbrsharepointitemrestoresession.md)