--- title: "Get-VBRBackup" description: "Returns backups. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns backups created with Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRBackup" dateModified: "2026-08-19" --- # Get-VBRBackup ## Short Description Returns backups. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backups created with Veeam Backup & Replication. ::: note The backups contain all restore points for all machines that are processed by the job. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of the backup IDs. The cmdlet will return backups with these IDs.

Guid[]

True

Named

True (ByPropertyName)

Name

Specifies an array of the job name. The cmdlet will return backups produced with these jobs.

String[]

False

Named

False

VeeamZIP

Defines that the cmdlet will return VeeamZIP backups.

SwitchParameter

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 `CBackup` object that contains backups created with Veeam Backup & Replication. ## Examples ::: example ### Example 1. Getting all Backups This command returns all backups created with Veeam Backup & Replication. ``` Get-VBRBackup ``` ::: ::: example ### Example 2. Getting Backups by ID This command returns the `d6b08a78-f405-400a-bb02-a132cf1778fa` backup. ``` Get-VBRBackup -Id "d6b08a78-f405-400a-bb02-a132cf1778fa" ``` ::: ::: example ### Example 3. Getting Backups by Name This command returns the `Cloud Webservices Backup` and `Exchange Backup_imported` backups. ``` Get-VBRBackup -Name "Cloud Webservices Backup", "Exchange Backup_imported" ``` ::: ::: example ### Example 4. Getting VeeamZIP Backup This command returns the VeeamZIP backups. ``` Get-VBRBackup -VeeamZIP ``` :::