Resume-DPMBackup

Resume-DPMBackup

Attempts to resume stalled DPM backup jobs.

Syntax

Parameter Set: ResumeAlertBackups
Resume-DPMBackup [-BackupTargetType] <BackupTargetType> {Disk | Tape | Online | Invalid} [-Alert] <Alert[]> [[-AdhocJobsContext] <AdhocJobsContext> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ResumeDsBackups
Resume-DPMBackup [-BackupTargetType] <BackupTargetType> {Disk | Tape | Online | Invalid} [-Datasource] <Datasource[]> [[-AdhocJobsContext] <AdhocJobsContext> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ResumePgBackups
Resume-DPMBackup [-BackupTargetType] <BackupTargetType> {Disk | Tape | Online | Invalid} [-ProtectionGroup] <ProtectionGroup[]> [[-AdhocJobsContext] <AdhocJobsContext> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ResumePsBackups
Resume-DPMBackup [-BackupTargetType] <BackupTargetType> {Disk | Tape | Online | Invalid} [-ProductionServer] <ProductionServer[]> [[-AdhocJobsContext] <AdhocJobsContext> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Resume-DPMBackup cmdlet attempts to resume stalled System Center 2012 – Data Protection Manager (DPM) backup jobs. Specify the backup target type and one of the following backup types:

-- Alert
-- Datasource
-- ProtectionGroup
-- ProductionServer

Parameters

-AdhocJobsContext<AdhocJobsContext>

Specifies the context details of the ad hoc job. Do not use this parameter from the Windows PowerShell command line.

Aliases

none

Required?

false

Position?

3

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Alert<Alert[]>

Specifies an array of alerts for which backups resume.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

-BackupTargetType<BackupTargetType>

Specifies the type of backup target. The acceptable values for this parameter are:

-- Disk
-- Tape
-- Online
-- Invalid

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Datasource<Datasource[]>

Specifies an array of data sources for which backups resume.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

-ProductionServer<ProductionServer[]>

Specifies an array of protected computers for which backups resume.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

-ProtectionGroup<ProtectionGroup[]>

Specifies an array of protection groups for which backups resume.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

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.

Notes

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

Examples

Example 1: Resume backing up production servers

This example resumes backing up all computers protected by a DPM server. The first command uses the Get-DPMProductionServer cmdlet to get the production servers for the named DPM server named DPMServer07, and stores it in the $DPMPS variable.

The second command resumes backing up the production servers stored in the $DPMPS variable for the DPM server named DPMServer07.

PS C:\> $DPMPS=Get-DPMProductionServer -DPMServerName "DPMServer07"
PS C:\> Resume-DPMBackup -DPMServerName "DPMServer07" -ProductionServer $DPMPS

Get-DPMProductionServer