Add-ClusterDisk

Add-ClusterDisk

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

Syntaxe

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

Description détaillée

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.

Paramètres

-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.

Alias

none

Requis ?

false

Position ?

named

Valeur par défaut

none

Accepter l'entrée de pipeline ?

false

Accepter les caractères génériques ?

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.

Alias

none

Requis ?

true

Position ?

1

Valeur par défaut

none

Accepter l'entrée de pipeline ?

true (ByValue)

Accepter les caractères génériques ?

false

<CommonParameters>

Cette applet de commande prend en charge les paramètres courants : -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer et -OutVariable. Pour plus d'informations, consultez  . about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entrées

Le type d'entrée correspond au type des objets que vous pouvez adresser à l'applet de commande.

  • 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

    L'objet Microsoft.Management.Infrastructure.CimInstance est une classe de wrapper qui affiche les objets WMI (Windows Management Instrumentation). Le chemin après le symbole # fournit l'espace de noms et le nom de classe de l'objet WMI sous-jacent.

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

    L'objet Microsoft.Management.Infrastructure.CimInstance est une classe de wrapper qui affiche les objets WMI (Windows Management Instrumentation). Le chemin après le symbole # fournit l'espace de noms et le nom de classe de l'objet WMI sous-jacent.

Sorties

Le type de sortie correspond au type des objets que l'applet de commande émet.

  • Microsoft.FailoverClusters.PowerShell.ClusterResource

Exemples

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

Rubriques connexes

Get-ClusterAvailableDisk

Test-Cluster

Get-Disk

Get-VirtualDisk