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

Get-VBRNASBackupRestorePoint

Short Description

Returns restore points of backups created by file backup jobs.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get all restore points that are created by file backup jobs.

Get-VBRNASBackupRestorePoint  [<CommonParameters>]

  • Get a restore point by the restore point ID.

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

  • Get a restore point available for the specific backup located on the specific file share.

Get-VBRNASBackupRestorePoint -NASBackup <VBRNASBackup[]> [-NASServer <VBRNASServer[]>]  [<CommonParameters>]

Detailed Description

This cmdlet returns restore points created by file backup jobs.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Id

Specifies an array of restore point IDs. The cmdlet will return restore points with the specified IDs.

Guid[]

True

Named

False

 

NASBackup

Specifies an array of backup files created by the file backup job. The cmdlet will return restore points that are available for these backup files.

Accepts the VBRNASBackup[] object. To get this object, run the Get-VBRNASBackup cmdlet.

True

Named

True (ByValue, ByPropertyName)

 

NASServer

Specifies an array of file shares. The cmdlet will return backup files that are located on these file shares.

Accepts the VBRNASServer[] object. To get this object, run the Get-VBRNASServer cmdlet.

False

Named

True (ByPropertyName)

 

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBRNASBackupRestorePoint object that contains settings of restore points created by the file backup jobs.

Examples

Get-VBRNASBackupRestorePointExample 1. Getting All Restore Points

Get-VBRNASBackupRestorePointExample 2. Getting Restore Point by ID

Get-VBRNASBackupRestorePointExample 3. Getting Restore Point From Specific File Share

Get-VBRNASBackupRestorePointExample 4. Getting Latest Restore Point

Related Commands