Get-VBRNDMPVolumeRestorePoint

Short Description

Returns restore points of NDMP server volumes.

Applies to

Product Edition: Enterprise

Requires Cloud Connect license

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get restore points available for specific volumes.

Get-VBRNDMPVolumeRestorePoint -Volume <VBRNDMPVolume>  [<CommonParameters>]

  • Get restore points by the backup ID.

Get-VBRNDMPVolumeRestorePoint -Id <guid[]>  [<CommonParameters>]

Detailed Description

This cmdlet returns restore points available for NDMP server volumes.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Volume

Specifies NDMP server volumes. The cmdlet will return an array of restore points available for selected volumes.

Accepts the VBRNDMPVolume object. To get this object, run the Get-VBRNDMPVolume cmdlet.

True

Named

False

Id

Specifies an array of IDs for backups that are stored on the NDMP server. The cmdlet will return an array of selected backups.

Guid[]

True

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRNDMPVolumeRestorePoint

Examples

Get-VBRNDMPVolumeRestorePointExample 1. Getting Restore Points for NDMP Server Volume [Using Variable]

This example shows how to get the restore points available for the /svm-cifs/Exhcange_vol volume.

$volume = Get-VBRNDMPVolume -Name "/svm-cifs/Exhcange_vol"

Get-VBRNDMPVolumeRestorePoint -Volume $volume

Perform the following steps:

  1. Run the Get-VBRNDMPVolume cmdlet to get the volume. Specify the Name parameter value. Save the result to the $volume variable.
  2. Run the Get-VBRNDMPVolumeRestorePoint cmdlet. Set the $volume variable as the Volume parameter value.

Get-VBRNDMPVolumeRestorePointExample 2. Getting Restore Points for NDMP Server Volume by Backup ID [Using Variable]

This example shows how to get the restore points available on the /svm-cifs/Exhcange_vol volume by the 3efbf118-978f-4858-805d-d8560208dc6f backup ID.

$volume = Get-VBRNDMPVolume -Name "/svm-cifs/Exhcange_vol"

Get-VBRNDMPVolumeRestorePoint -Volume $volume -ID "3efbf118-978f-4858-805d-d8560208dc6f"

Perform the following steps:

  1. Run the Get-VBRNDMPVolume cmdlet to get the volume. Specify the Name parameter value. Save the result to the $volume variable.
  2. Run the Get-VBRNDMPVolumeRestorePoint cmdlet. Set the $volume variable as the Volume parameter value. Specify the ID parameter value.

Related Commands

Get-VBRNDMPVolume