Help Center
Choose product document...
Veeam Backup for Microsoft Office 365 2.0 [Archived]
PowerShell Reference

Get-VBORestorePoint

Short Description

Returns restore points.

Syntax

This cmdlet provides 3 parameter sets.

  • For getting all restore points created by all backup jobs:

Get-VBORestorePoint  [<CommonParameters>]

  • For getting restore points created by a specific backup job:

Get-VBORestorePoint [-Job <VBOJob>]  [<CommonParameters>]

  • For getting 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
Pipeline
Input

Accept
Wildcard
Characters

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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Example 1

This command returns restore points created by all backup jobs.

PS C:\PS> Get-VBORestorePoint

Example 2

This command returns restore points created by a specific backup job.

You will need to perform the following steps:

  1. Run Get-VBOJob to get the backup job. Save the result to the $job variable.
  2. Run Get-VBORestorePoint with the $job variable.

PS C:\PS> $job = Get-VBOJob -Name "Backup: Sales Mailbox"

PS C:\PS> Get-VBORestorePoint -Job $job

Example 3

This command returns restore points created by backup jobs of a specific organization.

You will need to perform the following steps:

  1. Run Get-VBOOrganization to get the organization. Save the result to the $org variable.
  2. Run Get-VBORestorePoint with the $org variable.

PS C:\PS> $org = Get-VBOOrganization -Name "ABC"

PS C:\PS> Get-VBORestorePoint -Organization $org

Related Commands

Veeam Large Logo

User Guide

RESTful API Reference

PowerShell Reference