Get-VBORestorePoint
Short Description
Returns restore points.
Syntax
This cmdlet provides the following parameter sets.
- Get all restore points created by all backup jobs:
 
Get-VBORestorePoint [<CommonParameters>]  | 
- Get restore points created by a specific backup job:
 
Get-VBORestorePoint [-Job <VBOJob>] [<CommonParameters>]  | 
- Get restore points for a specific Exchange organization:
 
Get-VBORestorePoint [-Organization <VBOOrganization>] [<CommonParameters>]  | 
Detailed Description
This cmdlet returns restore points stored in Veeam Backup for Microsoft Office 365.
Parameters
Parameter  | Description  | Required  | Position  | Accept  | Accept  | 
Job  | Specifies the backup job. The cmdlet will return restore points created by this backup job.  | False  | Named  | True (ByValue)  | False  | 
Organization  | Specifies organization. The cmdlet will return restore points for this organization.  | False  | Named  | True (ByValue)  | True  | 
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example 1
This command returns restore points created by all backup jobs.
Get-VBORestorePoint  | 
Example 2
This command returns restore points created by a specific backup job.
- Run Get-VBOJob to get the backup job. Save the result to the $job variable.
 - Run Get-VBORestorePoint with the $job variable.
 
$job = Get-VBOJob -Name "Backup: Sales Mailbox" Get-VBORestorePoint -Job $job  | 
Example 3
This command returns restore points created by backup jobs of a specific organization.
- Run Get-VBOOrganization to get the organization. Save the result to the $org variable.
 - Run Get-VBORestorePoint with the $org variable.
 
$org = Get-VBOOrganization -Name "ABC" Get-VBORestorePoint -Organization $org  | 
Related Commands