This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRTapeVault

Short Description

Removes a specified tape vault from Veeam Backup & Replication.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus

Syntax

Remove-VBRTapeVault -Vault <VBRTapeVault[]> [-WhatIf] [-Confirm] [<CommonParameters>]

Detailed Description

This cmdlet removes a specified tape vault from Veeam Backup & Replication.

When you remove a vault, you do not remove the tapes stored in it.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Vault

Specifies the array of vaults. The cmdlet will remove these vaults.

Accepts VBRTapeVault type.

True

Named

True (ByValue,
ByProperty
Name)

False

WhatIf

Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

False

Named

False

False

Confirm

Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

None

Example 1

This command removes a tape vault named 'Sydney Remote Storage'. The vault object is obtained with Get-VBRTapeVault and piped down.

Get-VBRTapeVault -Name "Sydney Remote Storage" | Remove-VBRTapeVault

Example 2

This command removes tape vaults represented by '$SydneyRemoteStorage' and '$NewYorkRemoteStorage' variables. The vaults objects are obtained with Get-VBRTapeVault and assigned to the variables beforehand.

Remove-VBRTapeVault -Vault $SydneyRemoteStorage, $NewYorkRemoteStorage

Related Commands

Get-VBRTapeVault