--- title: "Get-VBRTapeVault" description: "Returns tape vaults. Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns existing tape vaults." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrtapevault.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Vaults > Get-VBRTapeVault" dateModified: "2026-08-19" --- # Get-VBRTapeVault ## Short Description Returns tape vaults. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns existing tape vaults. You can get the list of all tape vaults or search for instances directly by name or ID. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of vault IDs. The cmdlet will return vaults with these IDs.

Accepts Guid[] or String[].

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies the array of vault names. The cmdlet will return vaults with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

`` 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 [`VBRTapeVault[]`](vbrtapevault.md) ## Examples ::: example ### Example 1. Getting All Tape Vaults This command looks for a list of all existing vaults. ``` Get-VBRTapeVault ``` ::: ::: example ### Example 2. Getting Tape Vault by Name This command looks for a vault named `Sydney Remote Storage`. ``` Get-VBRTapeVault -Name "Sydney Remote Storage" ``` :::