--- title: "Get-VBRBackupFile" description: "Returns backup files. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus This cmdlet provides the following parameter sets: This cmdlet returns backup files." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrbackupfile.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRBackupFile" dateModified: "2026-08-19" --- # Get-VBRBackupFile ## Short Description Returns backup files. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backup files. You can use this cmdlet to get backup files from an object storage and to move them to the object storage. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Backup

Specifies the backup. The cmdlet will return an array of backup files for this backup.

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

CBackup

True

Named

True (ByValue)

Id

Specifies an ID of a backup file. The cmdlet will return the backup file with the specified ID.

Guid[]

True

Named

False

Path

Specifies a relative path to the folder with backup files.

String[]

False

Named

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). ## Output Object The cmdlet returns the [`VBRBackupFile`](vbrbackupfile.md) object that contains missing backup files. ## Examples ::: example ### Example 1. Getting all Backup Files from Specified Backup This example shows how to get all backup files from the specified backup. ``` $backup = Get-VBRBackup -Name "Exchange backups" Get-VBRBackupFile -Backup $backup ``` Perform the following steps: 1. Run the [`Get-VBRBackup`](get-vbrbackup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$backup` variable. 2. Run the `Get-VBRBackupFile` cmdlet. Set the `$backup` variable as the `Backup` parameter value. ::: ::: example ### Example 2. Getting all Incremental Backup Files from Specified Backup This example shows how to get all incremental backup files from the specified backup. ``` $backup = Get-VBRBackup -Name "Exchange backups" Get-VBRBackupFile -Backup $backup -Path "C:\Users\Administrator\Downloads\.vib" ``` Perform the following steps: 1. Run the [`Get-VBRBackup`](get-vbrbackup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$backup` variable. 2. Run the `Get-VBRBackupFile` cmdlet. Set the `$backup` variable as the `Backup` parameter value. Specify the `Path` parameter value. ::: ## Related Commands [`Get-VBRBackup`](get-vbrbackup.md)