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 <VBRSiteCollection> [<CommonParameters>] |
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 |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.
Output Object
The cmdlet returns the VBRSiteCollectionRestorePoint[] array that contains restore points of backed-up machines with Microsoft SQL Server databases for the specified SharePoint site collection.
Examples
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:
- Run the
Get-VBRApplicationRestorePointcmdlet. Provide theSharePointparameter. Specify theNameparameter value. Save the result to the$restorepointvariable. - Run the
Get-VBRSiteCollectioncmdlet. Set the$restorepointvariable as theRestorePointparameter value. Save the result to the$sitevariable. - Run the
Get-VBRSiteCollectionRestorePointcmdlet. Set the$sitevariable as theSiteCollectionparameter value.
Related Commands