--- title: "Add-VBRTapeVault" description: "This cmdlet creates a new tape vault." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrtapevault.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Vaults > Add-VBRTapeVault" dateModified: "2026-08-19" --- # Add-VBRTapeVault ## Short Description Creates a tape vault. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Add-VBRTapeVault -Name [-Description ] [-Protect] [] ``` ## Detailed Description This cmdlet creates a new tape vault. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies the description of the vault.

String

False

Named

False

Name

Specifies the name you want to assign to the vault.

String

True

Named

False

Protect

Defines that all tapes moved to this media vault automatically get lifelong overwrite protection.

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 [`VBRTapeVault`](vbrtapevault.md) ## Examples ::: example ### Creating Tape Vault This command creates a vault named `Sydney Remote Storage`. ``` Add-VBRTapeVault -Name "Sydney Remote Storage" -Description "Veeam backups offsite" ``` :::