Get-DPMTapeBackupOption

Get-DPMTapeBackupOption

Retrieves library, drive and other backup or archive options for a protection group.

Syntax

Parameter Set: Default
Get-DPMTapeBackupOption [-ProtectionGroup] <ProtectionGroup> [ <CommonParameters>]

Detailed Description

The Get-DPMTapeBackupOption cmdlet retrieves library, drive and other backup or archive options for a System Center 2012 – Data Protection Manager (DPM) protection group.

Parameters

-ProtectionGroup<ProtectionGroup>

Specifies a DPM protection group. A protection group consists of data sources, such as volumes or shares, with a common protection configuration and schedule.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • ProtectionGroup

Notes

  • For more information, type "Get-Help Get-DPMTapeBackupOption -detailed".

Examples

Example 1: Retrieve tape backup options

This example retrieves the tape backup options for a protection group in DPM.

The first command uses the Get-ProtectionGroup cmdlet to retrieve the protection group, and stores the result in the $PGroup variable.

The second command uses the Get-DPMTapeBackupOption cmdlet to retrieve the settings.

PS C:\> $PGroup = Get-ProtectionGroup -DPMServerName "Contoso-DPMServer"
PS C:\> Get-DPMTapeBackupOption -ProtectionGroup $PGroup

Set-DPMTapeBackupOption