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

Get-VBRTapeVault

Short Description

Returns tape vaults.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus

Syntax

Get-VBRTapeVault  [<CommonParameters>]

-OR-

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

-OR-

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

Related Commands

None

Return Type

VBRTapeVault[]

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

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

Specifies the name of the vault you want to get.

You can assign multiple names to this object.

False

Named

True (by Value
FromPipeline,
ValueFromPipeline
ByPropertyName)

True

Id

Specifies the ID of the VBRTapeVault object you want to get.

Accepts GUID or string type.

You can assign multiple IDs to this object.

False

Named

True (by Value
FromPipeline,
ValueFromPipeline
ByPropertyName)

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 looks for a list of all existing vaults.

PS C:\PS> Get-VBRTapeVault

Example 2

This command looks for a vault named 'Sydney Remote Storage'.

PS C:\PS> Get-VBRTapeVault -Name "Sydney Remote Storage"