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

Remove-VBRTapeVault

In this article

    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>]

    Related Commands

    Get-VBRTapeVault

    Return Type

    None

    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 vault you want to remove.

    Accepts VBRTapeVault object.

    You can assign multiple vaults to this object.

    True

    Named

    True (by Value
    FromPipeline,
    ValueFromPipeline
    ByPropertyName)

    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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example 1

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

    PS C:\PS> 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.

    PS C:\PS> Remove-VBRTapeVault -Vault $SydneyRemoteStorage, $NewYorkRemoteStorage