Get-VBRSiteCollectionRestorePoint
Short Description
Returns restore points of backed-up VMs with Microsoft SQL databases for the specified Microsoft SharePoint site collection.
Applies to
Veeam Backup & Replication
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBRSiteCollectionRestorePoint -SiteCollection <VBRSiteCollection> [<CommonParameters>] |
Detailed Description
This cmdlet returns restore points of backed-up VMs with Microsoft SQL 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 VMs with Microsoft SQL databases for these site collections. | Accepts the SiteCollection object. To get this object, run the Get-VBRSiteCollection cmdlet. | True | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VBRSiteCollectionRestorePoint object that contains restore points of backed-up VMs with Microsoft SQL databases for the specified SharePoint site collection.
Example
Getting All Restore Points of VMs with Microsoft SQL databases for Microsoft SharePoint Site Collections
This example shows how to get all restore points of backed-up VMs with Microsoft SQL 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:
- Run the Get-VBRApplicationRestorePoint cmdlet. Specify the SharePoint and specify the Name parameter values. Save the result to the $restorepoint variable.
- Run the Get-VBRSiteCollection cmdlet. Set the $restorepoint variable as the RestorePoint parameter value. Save the result to the $site variable.
- Run the Get-VBRSiteCollectionRestorePoint cmdlet. Set the $site variable as the SiteCollection parameter value.
Related Commands