Add-WBSystemState

Add-WBSystemState

Adds the system state components to the backup policy.

構文

Parameter Set: Default
Add-WBSystemState [-Policy] <WBPolicy> [ <CommonParameters>]

詳細説明

The Add-WBSystemState cmdlet adds the system state components to a policy contained in the specified WBPolicy object. Use backups created through this policy to perform a system state recovery.

The WBPolicy object must be in edit mode. To put the WBPolicy object in edit mode for a policy that is set as the scheduled backup policy, use the Get-WBPolicy cmdlet with the Editable parameter. The New-WBPolicy cmdlet creates a new WBPolicy object that is already in edit mode.

To use this cmdlet, you must be a member of the Administrators group or Backup Operators group.

パラメーター

-Policy<WBPolicy>

Specifies a WBPolicy object that contains the backup policy to update.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

True (ByValue)

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

false

<CommonParameters>

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

入力

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

  • WBPolicy

    The Add-WBSystemStateAdd-WBSystemState cmdlet accepts a WBPolicy object as input.

出力

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

  • None

Example 1: Add system state to the backup policy

This example adds a setting to the WBPolicy object to include the system state in backups that you create by using this policy.

The first command stores the result of the Get-WBPolicy cmdlet in the variable named $Policy.

The second command adds the system state to the backup policy in the $Policy variable.

PS C:\> $Policy = Get-WBPolicy -Editable
PS C:\> Add-WBSystemState -Policy $Policy

関連トピック

Get-WBPolicy

Get-WBSystemState

Remove-WBSystemState