Backup Exec Management Command Line Interface Help
Get-BERoboticLibraryDevice Cmdlet
Synopsis

Gets robotic library devices in Backup Exec.

Syntax
Get-BERoboticLibraryDevice [[-Name] [<String[]>]] [<CommonParameters>]

Get-BERoboticLibraryDevice -BackupExecServer [<BEBackupExecServer[]>] [[-Name] [<String[]>]] [<CommonParameters>]

Get-BERoboticLibraryDevice [-Id] [<Guid[]>] [<CommonParameters>]

Get-BERoboticLibraryDevice -InputObject [<BERoboticLibraryDevice[]>] [<CommonParameters>]
Description

Gets robotic library devices in Backup Exec.

Without parameters, Get-BERoboticLibraryDevice gets all of the Backup Exec robotic library devices. You can also specify a robotic library device by robotic library device name or robotic library device ID (Guid) or pass a Backup Exec robotic library device object through the pipeline to Get-BERoboticLibraryDevice.

Parameters

-BackupExecServer <BEBackupExecServer[]>

Specifies one or more Backup Exec server objects to filter the robotic library devices. Enter a variable that contains the objects, or type a command or expression that gets the objects. See Get-BEBackupExecServer.


Required true
Position Named
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


-Name <String[]>

Specifies one or more robotic library devices by robotic library device name (wildcards accepted). To specify multiple names, use commas to separate the names.


Required false
Position 0
Accepts pipeline input false
Accepts wildcard characters true


-Id <Guid[]>

Specifies one or more robotic library devices by robotic library device ID (Guid). To specify multiple IDs, use commas to separate the IDs.


Required true
Position 0
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


-InputObject <BERoboticLibraryDevice[]>

Specifies one or more robotic library device objects. Enter a variable that contains the objects, or type a command or expression that gets the objects.


Required true
Position Named
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


<CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

Input Types
BackupExec.Management.CLI.BEBackupExecServer

You can pipe a Backup Exec server object to filter robotic library devices returned by Get-BERoboticLibraryDevice.



System.Guid

You can pipe a System.Guid that contains the ID of a Backup Exec robotic library device object to Get-BERoboticLibraryDevice.



BackupExec.Management.CLI.BERoboticLibraryDevice

You can pipe a Backup Exec robotic library device object to Get-BERoboticLibraryDevice.

Return Value
BackupExec.Management.CLI.BERoboticLibraryDevice

Get-BERoboticLibraryDevice returns objects that represent Backup Exec robotic library devices.

Examples

Example 1

C:\PS> Get-BERoboticLibraryDevice

This command gets all of the robotic library devices.


Example 2
C:\PS> Get-BERoboticLibraryDevice -Name "Device 01"

This command gets the robotic library device named "Device 01".


Example 3
C:\PS> Get-BERoboticLibraryDevice -Name "Device*"

This command gets all of the robotic library devices that match the wildcard "Device*".


Example 4
C:\PS> Get-BEBackupExecServer -Local | Get-BERoboticLibraryDevice

This command gets all of the robotic library devices attached to the local Backup Exec server.

Related Link

Get-BEBackupExecServer