Get-VBRNDMPVolumeRestorePoint
Short Description
Returns restore points of NDMP server volumes.
Applies to
Product Edition: Enterprise
Requires Cloud Connect license
Syntax
This cmdlet provides the following parameter sets.
- For getting restore points available for specific volumes
- For getting restore points by the backup ID
Detailed Description
This cmdlet returns restore points available for NDMP server volumes.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Volume | Specifies NDMP server volumes. The cmdlet will return an array of restore points available for selected volumes. Accepts the VBRNDMPVolume type. | True | Named | False | 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. | True | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example 1
This example shows how to get the restore points available for the selected NDMP server volume.
- Run Get-VBRNDMPVolume to get the volume. Save the result to the $volume variable.
- Run Get-VBRNDMPVolumeRestorePoint with the $volume variable.
$volume = Get-VBRNDMPVolume -Name "/svm-cifs/Exhcange_vol" Get-VBRNDMPVolumeRestorePoint -Volume $volume |
Example 2
This example shows how to get the restore points available on an NDMP server volume by the backup ID.
- Run Get-VBRNDMPVolume to get the volume. Save the result to the $volume variable.
- Run Get-VBRNDMPVolumeRestorePoint with the $volume variable.
$volume = Get-VBRNDMPVolume -Name "/svm-cifs/Exhcange_vol" Get-VBRNDMPVolumeRestorePoint -Volume $volume -ID "3efbf118-978f-4858-805d-d8560208dc6f" |
Related Commands