Get-VBRTapeVault

Short Description

Returns tape vaults.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get all tape vaults.

Get-VBRTapeVault  [<CommonParameters>]

  • Get a tape vault by ID.

Get-VBRTapeVault [-Id <guid[]>]  [<CommonParameters>]

  • Get a tape vault by name.

Get-VBRTapeVault [-Name <string[]>]  [<CommonParameters>]

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

Name

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

String

False

Named

True (ByValue,
ByProperty
Name)

Id

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

Accepts GUID or string.

False

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRTapeVault[]

Examples

Get-VBRTapeVaultExample 1. Getting All Tape Vaults

This command looks for a list of all existing vaults.

Get-VBRTapeVault

Get-VBRTapeVaultExample 2. Getting Tape Vault by Name

This command looks for a vault named Sydney Remote Storage.

Get-VBRTapeVault -Name "Sydney Remote Storage"