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

Gets storage device pools in Backup Exec.

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

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

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

Gets storage device pools in Backup Exec.

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

Parameters

-Name <String[]>

Specifies one or more storage device pools by storage device 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 storage device pools by storage device 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 <BEStorageDevicePool[]>

Specifies one or more storage device 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 storage device pool object to Get-BEStorageDevicePool.



BackupExec.Management.CLI.BEStorageDevicePool

You can pipe a Backup Exec storage device pool object to Get-BEStorageDevicePool.

Return Value
BackupExec.Management.CLI.BEStorageDevicePool

Get-BEStorageDevicePool returns objects that represent Backup Exec storage device pools.

Examples

Example 1

C:\PS> Get-BEStorageDevicePool

This command gets all of the storage device pools.


Example 2
C:\PS> Get-BEStorageDevicePool -Name "Any disk storage"

This command gets the storage device pool named "Any disk storage".


Example 3
C:\PS> Get-BEStorageDevicePool -Name "*pool*"

This command gets all of the storage device pools that match the wildcard "*pool*".