Add-DPMChildDatasource

Add-DPMChildDatasource

Adds a data source or a child data source to a protection group.

構文

Parameter Set: Default
Add-DPMChildDatasource [-ProtectionGroup] <ProtectionGroup> [-ChildDatasource] <ProtectableObject[]> [[-Online]] [-PassThru] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Add-DPMChildDatasource cmdlet adds a data source or a child data source to a System Center 2012 – Data Protection Manager (DPM) protection group. A child data source refers to folders on a protected volume.

You can override a data source that a previous Remove-ChildDatasource cmdlet excluded from a protection group by adding the data source to the protection group.

パラメーター

-ChildDatasource<ProtectableObject[]>

Specifies an array of data sources, such as folders in a file system, that you can protect individually.

エイリアス

none

必須?

true

位置は?

2

既定値

none

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

True (ByValue)

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

false

-Online

Indicates whether online protection is enabled.

エイリアス

none

必須?

false

位置は?

3

既定値

none

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

True (ByValue)

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

false

-PassThru

Indicates that the cmdlet generates output. By default, this cmdlet does not generate output. You can use the PassThru parameter in order to use the cmdlet in a pipeline.

エイリアス

none

必須?

false

位置は?

named

既定値

none

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

false

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

false

-ProtectionGroup<ProtectionGroup>

Specifies a protection group.

エイリアス

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)。

入力

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

出力

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

  • ProtectionGroup

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

Example 1: Add a child data source to a protection group

This example adds a child data source to a protection group.

The first command gets all protection groups from the DPM server named DPMServer07 and stores these groups in the $Pg variable. You cannot edit these protection groups.

The second command gets the first protection group in the $Pg array in editable mode, and then stores it in the $Mpg variable.

The third command gets an arrayof protected and unprotected data on the production server named ProductionServer22, and stores the array in the $Po variable.

The fourth command uses standard array notation to specify the ninth element of the $Po array. The command adds that data source to the protection group stored in the $Mpg variable.

PS C:\> $Pg = Get-ProtectionGroup -DPMServerName "DPMServer07"
PS C:\> $Mpg = Get-ModifiableProtectionGroup $Pg[0]
PS C:\> $Po = Get-Datasource -ProductionServer "ProductionServer22"
PS C:\> Add-DPMChildDatasource -ProtectionGroup $Mpg -ChildDatasource $Po[8] 

関連トピック

Get-DPMChildDatasource

Remove-DPMChildDatasource