--- title: "Get-VBRSiteCollection" description: "Returns site collections for Microsoft SharePoint. Veeam Backup & Replication Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns an array of site collections for Microsoft SharePoint." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vbrsitecollection.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft SharePoint > Get-VBRSiteCollection" dateModified: "2026-08-18" --- # Get-VBRSiteCollection ## Short Description Returns site collections for Microsoft SharePoint. **Veeam Backup & Replication** **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSiteCollection -RestorePoint [] ``` ## Detailed Description This cmdlet returns an array of site collections for Microsoft SharePoint. ::: note This cmdlet is available for backups created with Veeam Backup & Replication. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestorePoint

Specifies restore points. The cmdlet will get Microsoft SharePoint site collections from the specified restore points.

Accepts the VBRApplicationRestorePoint[] object. To get this object, run the Get-VBRApplicationRestorePoint cmdlet.

True

Named

True (ByPropertyName, 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. ## Output Object The cmdlet returns the [`IVBRSiteCollection`](vbrsitecollection.md)`[]` object that contains an array of site collections for Microsoft SharePoint. ## Example ### Getting All Microsoft SharePoint Site Collections This example shows how to get all Microsoft SharePoint site collections from a restore point. ``` $restorepoint = Get-VBRApplicationRestorePoint -SharePoint -Name "SharePoint server" Get-VBRSiteCollection -RestorePoint $restorepoint ``` 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` cmdlet. Set the `$restorepoint` variable as the `RestorePoint` parameter value. ## Related Commands [`Get-VBRApplicationRestorePoint`](https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrapplicationrestorepoint.html?ver=13)