Resume-DPMBackup

Resume-DPMBackup

Attempts to resume stalled DPM backup jobs.

構文

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>]

詳細説明

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

パラメーター

-AdhocJobsContext<AdhocJobsContext>

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

エイリアス

none

必須?

false

位置は?

3

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Alert<Alert[]>

Specifies an array of alerts for which backups resume.

エイリアス

none

必須?

true

位置は?

2

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-BackupTargetType<BackupTargetType>

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

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

エイリアス

none

必須?

true

位置は?

1

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Datasource<Datasource[]>

Specifies an array of data sources for which backups resume.

エイリアス

none

必須?

true

位置は?

2

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-ProductionServer<ProductionServer[]>

Specifies an array of protected computers for which backups resume.

エイリアス

none

必須?

true

位置は?

2

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-ProtectionGroup<ProtectionGroup[]>

Specifies an array of protection groups for which backups resume.

エイリアス

none

必須?

true

位置は?

2

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

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

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