Export-VBRRestorePoint
Short Description
Exports backup files of a specific restore point.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Export-VBRRestorePoint [-RestorePoint] <COib> [-RetentionPeriod <VBRExportRetentionPeriod>] [-RetentionNumber <Int32>] [-RetentionPeriodType <VBRRetentionPeriodType>] [-Reason <String>] [-Repository <CBackupRepository>] [<CommonParameters>] |
Detailed Description
This cmdlet exports backup files of a specific restore point.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Reason |
Specifies the reason of the export. |
|
False |
Named |
False |
|
Repository |
Specifies the repository to which you want to export the restore point.
Accepts the |
|
False |
Named |
False |
|
RestorePoint |
Specifies a restore point. The cmdlet will export backup files of this restore point.
Accepts the |
|
True |
0 |
True (ByPropertyName, ByValue) |
|
RetentionNumber |
For the Specifies the period of time to keep the exported data. After this period finishes, Veeam Backup & Replication will remove data. |
|
False |
Named |
False |
|
RetentionPeriod |
Specifies a retention period of exported backup files. The cmdlet will delete exported backup files within one of the following retention periods:
Note: Use this parameter if the |
|
False |
Named |
False |
|
RetentionPeriodType |
Specifies the type of the retention policy. You can set the following types:
Use the
Note: Use this parameter if the |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
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:
- Run the
Get-VBRRestorePointReturns restore points. cmdlet. Save the result to the$restorepointvariable. - Run the
Export-VBRRestorePointcmdlet. Set the third$restorepointas theRestorePointparameter value.
Related Commands
Get-VBRRestorePointReturns restore points.