--- title: "Get-VBRSOBRObjectStorageBackup" description: "Returns backups available in archive extents and capacity extents of scale-out backup repositories. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrsobrobjectstoragebackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRSOBRObjectStorageBackup" dateModified: "2026-08-19" --- # Get-VBRSOBRObjectStorageBackup ## Short Description Returns backups available in archive extents and capacity extents of scale-out backup repositories. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backups stored in archive extents and capacity extents of scale-out backup repositories. ::: important You can use the backups you get with this cmdlet only in the removal operations. Run the [`Remove-VBRBackup`](remove-vbrbackup.md) cmdlet and provide the `FromDisk` parameter to delete backups from archive extents and capacity extents of scale-out backup repositories. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ArchiveTier

Defines that the cmdlet will return backups stored in archive extents of the scale-out backup repository.

Note: You do not need to provide this parameter if you specify the IDs of backed-up machines.

SwitchParameter

False

Named

False

CapacityTier

Defines that the cmdlet will return backups stored on capacity extents of the scale-out backup repository.

Note: You do not need to provide this parameter if you specify the IDs of backed-up machines.

SwitchParameter

False

Named

False

Id

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

Guid[]

True

Named

False

Name

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

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 [`VBRSOBRObjectStorageBackup`](vbrsobrobjectstoragebackup.md) ## Examples ::: example ### Example 1. Getting all Backups from Archive and Capacity Extents This command returns all backups stored on archive and capacity extents of scale-out backup repositories. ``` Get-VBRSOBRObjectStorageBackup ``` ::: ::: example ### Example 2. Getting all Backups from Capacity Extents This command returns all backups stored on capacity extents of scale-out backup repositories. ``` Get-VBRSOBRObjectStorageBackup -CapacityTier ``` ::: ::: example ### Example 3. Getting all Backups from Archive Extents This command returns all backups stored in archive extents of scale-out backup repositories. ``` Get-VBRSOBRObjectStorageBackup -ArchiveTier ``` :::