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

Gets Backup Exec server pools.

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

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

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

Gets Backup Exec server pools.

Without parameters, Get-BEBackupExecServerPool gets all of the Backup Exec server pools. You can also specify a Backup Exec server pool by server pool name or server pool ID (Guid) or pass a Backup Exec server pool object through the pipeline to Get-BEBackupExecServerPool.

Parameters

-Name <String[]>

Specifies one or more Backup Exec server pools by server pool 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 Backup Exec server pools by server pool 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 <BEBackupExecServerPool[]>

Specifies one or more Backup Exec server pool 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
System.Guid

You can pipe a System.Guid that contains the ID of a Backup Exec server pool object to Get-BEBackupExecServerPool.



BackupExec.Management.CLI.BEBackupExecServerPool

You can pipe a Backup Exec server pool object to Get-BEBackupExecServerPool.

Return Value
BackupExec.Management.CLI.BEBackupExecServerPool

Get-BEBackupExecServerPool returns objects that represent Backup Exec server pools.

Examples

Example 1

C:\PS> Get-BEBackupExecServerPool

This command returns all the Backup Exec server pools.


Example 2
C:\PS> Get-BEBackupExecServerPool -Name "Server Pool 0001"

This command returns the Backup Exec server pool named "Server Pool 0001".