--- title: "Export-VBRBackup (obsolete)" description: "Exports a backup or restore point files to a selected folder. This cmdlet is obsolete. Run the Copy-Item cmdlet instead. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides th" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/export-vbrbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Export-VBRBackup (obsolete)" dateModified: "2026-08-19" --- # Export-VBRBackup ## Short Description Exports a backup or restore point files to a selected folder. ::: note This cmdlet is obsolete. Run the [`Copy-Item`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/copy-item?view=powershell-7) cmdlet instead. ::: **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet copies a selected backup files to a user-specified directory. You can copy a whole backup file or select backups for a specific job object. The job objects are VMs, VM containers, datastores or resource pools. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Backup

Specifies the backup file you want to export.

Accepts the CBackup object. To get this object, run the Get-VBRBackup cmdlet.

CBackup

True

0

False

Dir

Specifies the path to the folder where you want to copy the files to.

String

True

1

False

RestorePoint

Specifies the job object (i.e. a VM) for which you want to export the backup files.

Accepts the COib object. To get this object, run the Get-VBRRestorePoint cmdlet.

COib

True

0

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Exporting Backup File to Specific Folder This example shows how to export the backup file to the folder `C:\Export`. ``` $ADbackup = Get-VBRBackup -Id "d6b08a78-f405-400a-bb02-a132cf1778fa" Export-VBRBackup -Backup $ADbackup -Dir "C:\Export" ``` Perform the following steps: 1. Run the [`Get-VBRBackup`](get-vbrbackup.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$ADbackup` variable. 2. Run the `Export-VBRBackup` cmdlet. Set the `$ADbackup` variable as the `Backup` parameter value. Specify the `Dir` parameter value. ::: ::: example ### Example 2. Exporting Backup File for Specific VM This example shows how to export the backup file to the folder `C:\Export`. ``` $AD_local = Get-VBRRestorePoint -Id 2ee79fec-9aa8-4058-a147-ff6b76ef2924 Export-VBRBackup -RestorePoint $AD_local -Dir "C:\Export" ``` Perform the following steps: 1. Run the [`Get-VBRRestorePoint`](get-vbrrestorepoint.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$AD_local` variable. 2. Run the `Export-VBRBackup` cmdlet. Set the `$AD_local` variable as the `RestorePoint` parameter value. Specify the `Dir` parameter value. ::: ## Related Commands - [`Get-VBRBackup`](get-vbrbackup.md) - [`Get-VBRRestorePoint`](get-vbrrestorepoint.md)