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

Export-VBRRestorePoint

Short Description

Exports backup files of a specific restore point.

Applies to

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

Syntax

Export-VBRRestorePoint [-RestorePoint] <COib> [-RetentionPeriod <VBRExportRetentionPeriod>] [-Reason <String>][<CommonParameters>]

Detailed Description

This cmdlet exports backup files of a specific restore point.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestorePoint

Specifies a restore point. The cmdlet will export backup files of this restore point.

COib

True

0

True  (ByValue, ByPropertyName)

RetentionPeriod

Specifies a retention period of exported backup files. The cmdlet will delete exported backup files within one of the following retention periods:

  • Never
  • In1Month
  • In3Months
  • In6Months
  • In1Year
  • In2Years
  • In3Years
  • In5Years

VBRExportRetentionPeriod

False

Named

False

Reason

Specifies the reason of the export.

String

False

Named

False

<CommonParameters>

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

Output Object

None.

Examples

Exporting Backup Files of Specific Restore Point

This example shows how to export backup files of a specific restore point.

$restorepoint = Get-VBRRestorePoint

Export-VBRRestorePoint -RestorePoint $restorepoint[2]

Perform the following steps:

  1. Run the Get-VBRRestorePoint cmdlet. Save the result to the $restorepoint variable.
  2. Run the Export-VBRRestorePoint cmdlet. Set the $restorepoint as the RestorePoint parameter value.

Related Commands

Get-VBRRestorePoint