This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBORestorePoint

In this article

    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
    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 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.

    1. Run Get-VBOJob to get the backup job. Save the result to the $job variable.
    2. 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.

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

    $org = Get-VBOOrganization -Name "ABC"

    Get-VBORestorePoint -Organization $org

    Related Commands

    I want to report a typo

    There is a misspelling right here:

     

    I want to let the Veeam Documentation Team know about that.