Get-VBRNASBackupRestorePoint (obsolete)

Short Description

Returns restore points of backups created by file backup jobs.

Note

This cmdlet is obsolete. Run the Get-VBRUnstructuredBackupRestorePointReturns restore points created by file backup jobs and object storage backup jobs. cmdlet instead.

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides the following parameter sets:

  • AllParameterSets (Default)

    Get-VBRNASBackupRestorePoint [<CommonParameters>]

  • Id

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

  • NasBackup

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

Detailed Description

This cmdlet returns restore points created by file backup jobs.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs of backed-up file shares. The cmdlet will return restore points of these file shares.

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-VBRNASBackupReturns backup files created by the file backup job. This cmdlet is obsolete. Run the Get-VBRUnstructuredBackup cmdlet instead. cmdlet.

VBRNASBackup[]

True

Named

True (ByPropertyName, ByValue)

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-VBRNASServerReturns file shares that are added to the Veeam Backup & Replication infrastructure. This cmdlet is obsolete. Run the Get-VBRUnstructuredServer cmdlet instead. cmdlet.

VBRNASServer[]

False

Named

True (ByPropertyName)

<CommonParameters>

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

Output Object

VBRNASBackupRestorePoint

Examples

Get-VBRNASBackupRestorePoint (obsolete)Example 1. Getting All Restore Points

This command returns all restore points that are created by file backup jobs.

Get-VBRNASBackupRestorePoint

Get-VBRNASBackupRestorePoint (obsolete)Example 2. Getting Restore Point by ID

This command returns the 51e4eced-3fce-465b-b516-f24cb5a068a4 restore point.

Get-VBRNASBackupRestorePoint -ID "51e4eced-3fce-465b-b516-f24cb5a068a4"

Get-VBRNASBackupRestorePoint (obsolete)Example 3. Getting Restore Point From Specific File Share

This example shows how to get restore points of the NFS Backup backup file. The restore points are located on the \\WinSRV2049\Documents file share.

$backupfile = Get-VBRNASBackup -Name "NFS Backup"

$server = Get-VBRNASServer -Name "\\WinSRV2049\Documents"

Get-VBRNASBackupRestorePoint -NASServer $server -NASBackup $backupfile

Perform the following steps:

  1. Run the Get-VBRNASBackupReturns backup files created by the file backup job. This cmdlet is obsolete. Run the Get-VBRUnstructuredBackup cmdlet instead. cmdlet. Specify the Name parameter value. Save the result to the $backupfile variable.
  2. Run the Get-VBRNASServerReturns file shares that are added to the Veeam Backup & Replication infrastructure. This cmdlet is obsolete. Run the Get-VBRUnstructuredServer cmdlet instead. cmdlet. Specify the Name parameter value. Save the result to the $server variable.
  3. Run the Get-VBRNASBackupRestorePoint cmdlet. Set the $server variable as the NASServer parameter value. Set the $backupfile variable as the NASBackup parameter value.

Get-VBRNASBackupRestorePoint (obsolete)Example 4. Getting Latest Restore Point

This command gets the latest restore point from an array of restore points.

$restorepoint = Get-VBRNASBackupRestorePoint | Sort-Object -Property CreationTime | Select-Object -Last 1

Perform the following steps:

  1. Run the Get-VBRNASBackupRestorePoint cmdlet. Save the result to the $restorepoint variable.
  2. Pipe the cmdlet output to the Sort-Object cmdlet. Set the CreationTime value as the Property parameter. Provide the Descending parameter.
  3. Run the Select-Object cmdlet. Set the 1 value for the Last parameter.
  • Get-VBRNASBackupReturns backup files created by the file backup job. This cmdlet is obsolete. Run the Get-VBRUnstructuredBackup cmdlet instead.
  • Get-VBRNASServerReturns file shares that are added to the Veeam Backup & Replication infrastructure. This cmdlet is obsolete. Run the Get-VBRUnstructuredServer cmdlet instead.
  • Select-Object

Page updated 2026-08-19

Page content applies to build 13.1.1.18