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

Gets legacy backup-to-disk folders in Backup Exec.

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

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

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

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

Gets legacy backup-to-disk folders in Backup Exec.

Without parameters, Get-BELegacyBackupToDiskFolderDevice gets all of the legacy backup-to-disk folders. You can also specify a specific legacy backup-to-disk folder by the folder name or the folder ID (Guid) or pass a folder object through the pipeline to Get-BELegacyBackupToDiskFolderDevice.

Parameters

-BackupExecServer <BEBackupExecServer[]>

Specifies one or more Backup Exec server objects to filter the legacy backup-to-disk folders. 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 legacy backup-to-disk folder devices by legacy backup-to-disk folder 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 legacy backup-to-disk folder devices by legacy backup-to-disk folder 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 <BELegacyBackupToDiskFolderDevice[]>

Specifies one or more legacy backup-to-disk folder 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 legacy backup-to-disk folder devices returned by Get-BELegacyBackupToDiskFolderDevice.



System.Guid

You can pipe a System.Guid that contains the ID of a Backup Exec legacy backup-to-disk folder device object to Get-BELegacyBackupToDiskFolderDevice.



BackupExec.Management.CLI.BELegacyBackupToDiskFolderDevice

You can pipe a Backup Exec legacy backup-to-disk folder device object to Get-BELegacyBackupToDiskFolderDevice.

Return Value
BackupExec.Management.CLI.BELegacyBackupToDiskFolderDevice

Get-BELegacyBackupToDiskFolderDevice returns objects that represent Backup Exec legacy backup-to-disk folder devices.

Examples

Example 1

C:\PS> Get-BELegacyBackupToDiskFolderDevice

This command gets all of the legacy backup-to-disk folder devices.


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

This command gets the legacy backup-to-disk folder device named "Device 01".


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

This command gets all of the legacy backup-to-disk folder devices that match the wildcard "Device*".


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

This command gets all of the legacy backup-to-disk folder devices attached to the local Backup Exec server.

Related Link

Get-BEBackupExecServer