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

Gets deduplication disk storage devices in Backup Exec.

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

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

Get-BEDeduplicationDiskStorageDevice -LogonAccount [<BELogonAccount[]>] [[-Name] [<String[]>]] [<CommonParameters>]

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

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

Gets deduplication disk storage devices in Backup Exec.

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

Parameters

-BackupExecServer <BEBackupExecServer[]>

Specifies one or more Backup Exec server objects to filter the deduplication disk storage 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


-LogonAccount <BELogonAccount[]>

Specifies one or more logon account objects to filter the deduplication disk storage devices. Enter a variable that contains the objects, or type a command or expression that gets the objects. See Get-BELogonAccount.


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


-Name <String[]>

Specifies one or more deduplication disk storage devices by deduplication disk storage 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 deduplication disk storage devices by deduplication disk storage 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 <BEDeduplicationDiskStorageDevice[]>

Specifies one or more deduplication disk storage 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 deduplication disk storage devices returned by Get-BEDeduplicationDiskStorageDevice.



BackupExec.Management.CLI.BELogonAccount

You can pipe a Backup Exec logon account object to filter deduplication disk storage devices returned by Get-BEDeduplicationDiskStorageDevice.



BackupExec.Management.CLI.BEStorageArrayDevice

You can pipe a Backup Exec storage array device object to filter deduplication disk storage devices returned by Get-BEDeduplicationDiskStorageDevice.



System.Guid

You can pipe a System.Guid that contains the ID of a Backup Exec deduplication disk storage device object to Get-BEDeduplicationDiskStorageDevice.



BackupExec.Management.CLI.BEDeduplicationDiskStorageDevice

You can pipe a Backup Exec deduplication disk storage device object to Get-BEDeduplicationDiskStorageDevice.

Return Value
BackupExec.Management.CLI.BEDeduplicationDiskStorageDevice

Get-BEDeduplicationDiskStorageDevice returns objects that represent Backup Exec deduplication disk storage devices.

Examples

Example 1

C:\PS> Get-BEDeduplicationDiskStorageDevice

This command gets all of the deduplication disk storage devices.


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

This command gets the deduplication disk storage device named "Device 01".


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

This command gets all of the deduplication disk storage devices that match the wildcard "Device*".


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

This command gets all of the deduplication disk storage devices attached to the local Backup Exec server.

Related Links

Get-BEBackupExecServer
Get-BELogonAccount
Get-BEStorageArrayDevice