Add-ClusterDisk

Add-ClusterDisk

Makes a new disk available for use in a failover cluster.

構文

Parameter Set: Default
Add-ClusterDisk [-InputObject] <PSObject[]> [-Cluster <String> ] [ <CommonParameters>]

詳細説明

The Add-ClusterDisk cmdlet makes a new disk available for use in a failover cluster. The disk (LUN) must be exposed to all nodes in the failover cluster, and should not be exposed to any other servers.

When adding a disk, make sure that the configuration of the storage allows the operating system to recognize and mount the disk as needed. The disk must be a basic disk (not a dynamic disk) and should not be exposed to servers outside the cluster. The Get-ClusterAvailableDisk cmdlet gets information about disks that you can add to the cluster.

パラメーター

-Cluster<String>

Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is . or it is omitted, then the cmdlet runs on the local cluster.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

false

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

false

-InputObject<PSObject[]>

Specifies the list of shared disks to add to the cluster. The list of disks is generated with the Get-ClusterAvailableDisk cmdlet.

エイリアス

なし

必須?

true

位置は?

1

既定値

なし

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

true (ByValue)

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

false

<CommonParameters>

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

入力

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

  • Microsoft.FailoverClusters.PowerShell.ClusterDiskInfo

  • Microsoft.Management.Infrastructure.CimInstance

    This object is output from the Get-Disk and the Get-VirtualDisk cmdlets.

  • Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_Disk

    Microsoft.Management.Infrastructure.CimInstance オブジェクトは、Windows Management Instrumentation (WMI) オブジェクトを表示するラッパー クラスです。シャープ記号 (#) の後のパスは、基になる WMI オブジェクトの名前空間とクラス名です。

  • Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk

    Microsoft.Management.Infrastructure.CimInstance オブジェクトは、Windows Management Instrumentation (WMI) オブジェクトを表示するラッパー クラスです。シャープ記号 (#) の後のパスは、基になる WMI オブジェクトの名前空間とクラス名です。

出力

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

  • Microsoft.FailoverClusters.PowerShell.ClusterResource

Example 1

This example identifies the disks that are ready to be added to the cluster, and then adds them to Available Storage cluster group.

PS C:\> Get-ClusterAvailableDisk | Add-ClusterDisk

EXAMPLE 2

This example examines disks that are ready to be added to the cluster, finds the disk with a specific SCSI address, and adds it to Available Storage cluster group.

PS C:\> Get-ClusterAvailableDisk | Where-Object –FilterScript { $_.ScsiAddress -Eq 50331651 } | Add-ClusterDisk

EXAMPLE 3

This example clusters a physical disk; this cmdlet adds a physical disk to the Available Storage for the cluster.

PS C:\> Get-Disk –Number 11 | Add-Clusterdisk

関連トピック

Get-ClusterAvailableDisk

Test-Cluster

Get-Disk

Get-VirtualDisk