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

Get-VBRTapeServer

Short Description

Returns tape servers.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRTapeServer [-Server <CHost[]>]  [<CommonParameters>]

-OR-

Get-VBRTapeServer [-Name <string[]>] [-Server <CHost[]>] [<CommonParameters>]

Related Commands

Get-VBRServer

Return Type

VBRTapeServer[]

Detailed Description

This cmdlet returns tape servers connected to Veeam Backup & Replication.

You can get the list of all tape servers or narrow down the output to the servers of specific type, or search for instances directly by name.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Server

Specifies the host on which you want to look for tape servers.

You can assign multiple servers to this object.

False

Named

True (by Value
FromPipeline,
ValueFromPipeline
ByPropertyName)

False

Name

Specifies the name of the tape server you want to get, or search conditions.

You can specify multiple names separated by commas.

False

Named

False

True

<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 all tape servers connected to Veeam Backup & Replication.

PS C:\PS> Get-VBRTapeServer

Example 2

This command looks for all tape servers connected to the host named 'Host01'. The 'Host01' server is obtained with Get-VBRServer and piped down.

PS C:\PS> Get-VBRServer -Name "Host01" | Get-VBRTapeServer

Example 3

This command looks for the tape server named 'Sydney_Tape_Server' on the server represented by the '$Host01' variable. The 'Host01' server is obtained with Get-VBRServer and assigned to the variable beforehand.

PS C:\PS> Get-VBRTapeServer -Name "Sydney_Tape_Server" -Server $Host01