--- title: "Get-VBRArchiveObjectStorageRepository" description: "Returns archive repositories added to the backup infrastructure. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns a list o" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrarchiveobjectstoragerepository.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Object Storage Repositories > Managing Object Storage Repositories > Get-VBRArchiveObjectStorageRepository" dateModified: "2026-08-19" --- # Get-VBRArchiveObjectStorageRepository ## Short Description Returns archive repositories added to the backup infrastructure. **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 returns a list of archive repositories added to Veeam Backup & Replication. You can get the following types of these archive repositories: - Amazon S3 Glacier - Azure Archive - S3 compatible object storage with data archiving ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of an archive repository that you want to get.

Guid[]

False

Named

False

Name

Specifies a name of an archive repository that you want to get.

String[]

False

Named

False

Type

Specifies the type of an archive repository that you want to get. You can select the following type of backup repositories:

  • Amazon S3 Glacier
  • Azure Archive

Accepts the following types of objects:

  • AzureArchive
  • AmazonS3Glacier

To create these objects, run the following cmdlets:

VBRArchiveObjectStorageRepositoryType

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 `VBRArchiveObjectStorageRepository` object that defines the archive repository settings. ## Examples ::: example ### Example 1. Getting Azure Archive Repositories This command gets all Azure Archive repository instances added to the backup infrastructure. ``` Get-VBRArchiveObjectStorageRepository -Type AzureArchive ``` ::: ::: example ### Example 2. Getting Amazon S3 Glacier Archive Repositories This command gets all Amazon S3 Glacier archive repository instances added to the backup infrastructure. ``` Get-VBRArchiveObjectStorageRepository -Type AmazonS3Glacier ``` :::