Remove-DPMRecoveryPoint

Remove-DPMRecoveryPoint

Removes a recovery point from tape or disk.

構文

Parameter Set: Default
Remove-DPMRecoveryPoint [-RecoveryPoint] <RecoverySource> [-ForceDeletion] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Remove-DPMRecoveryPoint cmdlet removes a recovery point from tape or disk. If a recovery point exists in multiple locations, for example, on disk and tape, or two tapes, use the Get-DPMRecoveryPointLocation cmdlet to get the location of the recovery point.

パラメーター

-ForceDeletion

Indicates that DPM prunes the data source regardless if it is currently running a backup job.

エイリアス

none

必須?

false

位置は?

named

既定値

none

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

false

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

false

-RecoveryPoint<RecoverySource>

Specifies a recovery point object. To obtain a recovery point location object, use the Get-DPMRecoveryPoint cmdlet.

エイリアス

none

必須?

true

位置は?

1

既定値

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 Remove-DPMRecoveryPoint -detailed".

Example 1: Remove a recovery point

The first command gets the protection group on the DPM server named DPMServer02 and store the results in the $Pg variable.

The second command gets the list of protected and unprotected data in the protection group stored in the $Pg variable. The command stores the results in the $Ds variable.

The third command gets the recovery point for the for the data source stored in the $Ds variable, and stores the results in the $Rp variable.

The fourth command removes the recovery point stored in the $Rp variable.

PS C:\> $Pg = Get-DPMProtectionGroup -DPMServerName "DPMServer02"

PS C:\> $Ds = Get-DPMDatasource -ProtectionGroup $Pg

PS C:\> $Rp = Get-DPMRecoveryPoint -Datasource $Ds

PS C:\> Remove-DPMRecoveryPoint -RecoveryPoint $Rp

関連トピック

Get-DPMProtectionGroup

Get-DPMDatasource

Get-DPMRecoveryPoint

New-DPMRecoveryPoint