Start-WBHyperVRecovery

Start-WBHyperVRecovery

Starts recovery of a virtual machine.

構文

Parameter Set: Default
Start-WBHyperVRecovery [-BackupSet] <WBBackupSet> [-VMInBackup] <WBVirtualMachine[]> [[-TargetPath] <String> ] [[-NoRollForward]] [[-Async]] [[-Force]] [[-UseAlternateLocation]] [[-RecreatePath]] [ <CommonParameters>]

詳細説明

The Start-WBHyperVRecovery cmdlet starts a recovery operation for a Hyper-V virtual machine (VM). Use the application array from a WBBackupSet object to specify the VMs that you want to recover.

For an overview of Hyper-V, see HyperV Overview (https://technet.microsoft.com/en-us/library/hh831531.aspx) on TechNet.

パラメーター

-Async

Indicates that Windows PowerShell® returns immediately after it starts the recovery and does not display status messages.

エイリアス

なし

必須?

false

位置は?

5

既定値

なし

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

false

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

false

-BackupSet<WBBackupSet>

Specifies a backup set object that contains a Hyper-V application backup.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

True (ByValue)

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

false

-Force

Indicates that the cmdlet starts the recovery operation without prompting you for confirmation. By default, the cmdlet prompts you for confirmation before it proceeds.

エイリアス

なし

必須?

false

位置は?

6

既定値

なし

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

false

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

false

-NoRollForward

Indicates that you can recover a VM from a previous point in time if you select the latest version of the application from the backups. For versions of the application other than the latest version, the operation uses point-in-time recovery by default.

エイリアス

なし

必須?

false

位置は?

4

既定値

False

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

false

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

false

-RecreatePath

Indicates that the recovery operation recreates the original folder structure when it restores a VM. This option applies only if you recover a VM to an alternate location. If you do not specify this option, the recovery puts all files for a component under a single folder.

エイリアス

なし

必須?

false

位置は?

8

既定値

なし

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

false

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

false

-TargetPath<String>

Specifies an alternate location in the backup set where the recovery process searches for files.

エイリアス

なし

必須?

false

位置は?

3

既定値

なし

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

false

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

false

-UseAlternateLocation

Indicates that you can use the recovery process to recover Hyper-V components, update configuration, and register the VM with the Hyper-V management service. This option applies only if you recover a VM to an alternate location.

エイリアス

なし

必須?

false

位置は?

7

既定値

なし

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

false

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

false

-VMInBackup<WBVirtualMachine[]>

Specifies a list of virtual machine objects that contain the VMs to recover. This list must contain VMs from the Hyper-V application object in the backup set's application array.

エイリアス

なし

必須?

true

位置は?

2

既定値

なし

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

True (ByValue)

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

false

<CommonParameters>

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

入力

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

  • WBBackupSet, WBVirtualMachine

出力

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

  • System.String

Example 1: Recover a VM to its original location

This example recovers a VM to its original location.

The first command gets the backup set object from the system catalog and stores it in the variable named $Backup.

The second command uses the backup set stored in $Backup to recover a VM that has the ID 285CEA9B-E337-44E1-9BF9-BF431BC3EB35 to its original location.

PS C:\> $Backup = Get-WBBackupSet
PS C:\> Start-WBHyperVRecovery -BackupSet $Backup -VMInBackup $Backup.Application[0].Component[0]

Example 2: Recover a VM to an alternate location

This example recovers a VM to an alternate location.

The first command gets the backup set object from the system catalog and stores it in the variable named $Backup.

The second command recovers the VM that has the ID F7D8AAF4-D086-47CC-8264-61F80527BFF4 to an alternate location.

PS C:\> $Backup = Get-WBBackupSet
PS C:\> Start-WBHyperVRecovery -BackupSet $Backup -VMInBackup $Backup.Application[0].Component[1] -TargetPath F:\Dir1 -UseAlternateLocation -RecreatePath

関連トピック

Get-WBBackupSet