--- title: "Get-VBRSharePointItemRestoreSession" description: "Returns active restore sessions started to perform operations with backed-up Microsoft SharePoint databases. Product: Veeam Backup & Replication Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdle" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vbrsharepointitemrestoresession.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SharePoint > Get-VBRSharePointItemRestoreSession" dateModified: "2026-08-18" --- # Get-VBRSharePointItemRestoreSession ## Short Description Returns active restore sessions started to perform operations with backed-up Microsoft SharePoint databases. **Product**: Veeam Backup & Replication **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSharePointItemRestoreSession [] ``` ## Detailed Description This cmdlet returns an array of active restore sessions started to perform operations with backed-up Microsoft SharePoint databases. ::: note The cmdlet returns restore sessions initiated in the PowerShell console only. The cmdlet does not return restore sessions running in the Veeam Backup & Replication console. ::: ## Parameters `` 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. ## Output Object The cmdlet returns the [`VBRSharePointRestoreSession`](vbrsharepointrestoresession.md)`[]` array that contains settings of restore sessions started to explore backed-up Microsoft SharePoint databases and to perform operations with these databases. ## Examples ::: example ### Getting Restore Session This example shows how to get a restore session started to perform operations with backed-up Microsoft SharePoint databases. ``` $session = Get-VBRSharePointItemRestoreSession $session[0] ``` :::