Restore-IscsiVirtualDisk

Restore-IscsiVirtualDisk

Restores a virtual disk from a snapshot.

構文

Parameter Set: SnapshotId
Restore-IscsiVirtualDisk [-SnapshotId] <String> [-ComputerName <String> ] [-Credential <PSCredential> ] [ <CommonParameters>]

Parameter Set: InputObject
Restore-IscsiVirtualDisk -InputObject <IscsiVirtualDiskSnapshot> [-ComputerName <String> ] [-Credential <PSCredential> ] [ <CommonParameters>]

詳細説明

The Restore-IscsiVirtualDisk cmdlet restores an iSCSI virtual disk using its snapshot.

パラメーター

-ComputerName<String>

Specifies the computer name, or IP address, of the remote computer, if this cmdlet is run on a remote computer.
Specifies the cluster resource group network name, or cluster node name, if this cmdlet is run on a cluster configuration.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-Credential<PSCredential>

Specifies the credentials when connecting to a remote computer.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-InputObject<IscsiVirtualDiskSnapshot>

Accepts an iSCSI Virtual Disk Snapshot object from the input pipeline.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

false

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

false

-SnapshotId<String>

Specifies the identifier (ID) for the snapshot.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

True (ByPropertyName)

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

false

<CommonParameters>

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

入力

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

  • Microsoft.Iscsi.Target.Commands.IscsiVirtualDiskSnapshot

出力

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

  • None

EXAMPLE 1

This example restores a snapshot with the ID {E9A5BA03-85B9-40CA-85DF-DC1695690B40}.

PS C:\> Restore-IscsiVirtualDisk -SnapshotId "{E9A5BA03-85B9-40CA-85DF-DC1695690B40}"

EXAMPLE 2

This example restores a snapshot with the ID {E9A5BA03-85B9-40CA-85DF-DC1695690B40} hosted on a computer named fs1.contoso.com.

PS C:\> Restore-IscsiVirtualDisk -SnapshotId "{E9A5BA03-85B9-40CA-85DF-DC1695690B40}" -ComputerName "fs1.contoso.com"

EXAMPLE 3

This example uses the Get-IscsiVirtualDiskSnapshot cmdlet to retrieve a snapshot, then assigns the snapshot object to a variable named $vhd1snapshot, and finally passes it to this cmdlet to restore the virtual disk.

PS C:\> Restore-IscsiVirtualDisk -InputObject $vhd1snapshot

関連トピック

Checkpoint-IscsiVirtualDisk

Convert-IscsiVirtualDisk

Get-IscsiVirtualDisk

Get-IscsiVirtualDiskSnapshot

Import-IscsiVirtualDisk

New-IscsiVirtualDisk

Remove-IscsiVirtualDisk

Set-IscsiVirtualDisk