--- title: "Get-VBRSiteCollectionRestorePoint" description: "Returns restore points of backed-up machines with Microsoft SQL Server databases for the specified Microsoft SharePoint site collection." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vbrsitecollectionrestorepoint.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SharePoint > Get-VBRSiteCollectionRestorePoint" dateModified: "2026-08-18" --- # Get-VBRSiteCollectionRestorePoint ## Short Description Returns restore points of backed-up machines with Microsoft SQL Server databases for the specified Microsoft SharePoint site collection. **Veeam Backup & Replication** **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSiteCollectionRestorePoint -SiteCollection [] ``` ## Detailed Description This cmdlet returns restore points of backed-up machines with Microsoft SQL Server databases for the specified Microsoft SharePoint site collection. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

SiteCollection

Specifies a site collection for Microsoft SharePoint. The cmdlet will return restore points of backed-up machines with Microsoft SQL Server databases for these site collections.

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

True

Named

False

`` 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 [`VBRSiteCollectionRestorePoint`](vbrsitecollectionrestorepoint.md)`[]` array that contains restore points of backed-up machines with Microsoft SQL Server databases for the specified SharePoint site collection. ## Example ### Getting All Restore Points of Machines with Microsoft SQL Server Databases for Microsoft SharePoint Site Collections This example shows how to get all restore points of backed-up machines with Microsoft SQL Server databases for the `SharePoint server` SharePoint site collection. ``` $restorepoint = Get-VBRApplicationRestorePoint -SharePoint -Name "SharePoint server" $site = Get-VBRSiteCollection -RestorePoint $restorepoint Get-VBRSiteCollectionRestorePoint -SiteCollection $site ``` Perform the following steps: 1. Run the [`Get-VBRApplicationRestorePoint`](https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrapplicationrestorepoint.html?ver=13) cmdlet. Provide the SharePoint parameter. Specify the `Name` parameter value. Save the result to the `$restorepoint` variable. 2. Run the [`Get-VBRSiteCollection`](get-vbrsitecollection.md) cmdlet. Set the `$restorepoint` variable as the `RestorePoint` parameter value. Save the result to the `$site` variable. 3. Run the `Get-VBRSiteCollectionRestorePoint` cmdlet. Set the `$site` variable as the `SiteCollection` parameter value. ## Related Commands - [`Get-VBRApplicationRestorePoint`](https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrapplicationrestorepoint.html?ver=13) - [`Get-VBRSiteCollection`](get-vbrsitecollection.md)