--- title: "Get-VBRApplicationBackupRepository" description: "This cmdlet returns a list of application backup repositories added to the backup infrastructure. You can get a list of all backup repositories or look for repositories directly by name or ID." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrapplicationbackuprepository.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Application Backup Repositories > Get-VBRApplicationBackupRepository" dateModified: "2026-08-19" --- # Get-VBRApplicationBackupRepository ## Short Description Returns application backup repositories. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns a list of application backup repositories added to the backup infrastructure. You can get a list of all backup repositories or look for repositories directly by name or ID. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of IDs of application backup repositories that you want to get.

Guid[]

True

Named

False

Name

Specifies the array of names of application backup repositories that you want to get.

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 This cmdlet returns the [`VBRApplicationBackupRepository`](vbrapplicationbackuprepository.md)`[]` object that contains settings of application backup repositories. ## Examples ::: example ### Example 1. Getting All Application Backup Repositories This command gets all application backup repositories added to the backup infrastructure. ``` Get-VBRApplicationBackupRepository ``` ::: ::: example ### Example 2. Getting Application Backup Repositories by Name This command gets the `Application Backup Repository 01` application backup repository. ``` Get-VBRApplicationBackupRepository -Name "Application Backup Repository 01" ``` :::