Skip to content

Latest commit

 

History

History
142 lines (97 loc) · 3.14 KB

File metadata and controls

142 lines (97 loc) · 3.14 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.FailoverClusters.PowerShell.dll-Help.xml
FailoverClusters
11/22/2022
2.0.0
Get-ClusterNode

Get-ClusterNode

SYNOPSIS

Gets information about one or more nodes, or servers, in a failover cluster.

SYNTAX

Get-ClusterNode [[-Name] <StringCollection>] [-InputObject <PSObject>] [-Cluster <String>]
 <CommonParameters>]

DESCRIPTION

The Get-ClusterNode cmdlet gets information about one or more nodes, or servers, in a failover cluster.

Use this cmdlet to obtain information about the node status. To see the resources currently owned by a particular node, specify that node in this cmdlet and then pipe the results through the Get-ClusterResource cmdlet.

EXAMPLES

Example 1

Get-ClusterNode

This example displays the name, id, and state of each node, or server, in the local cluster.

Example 2

Get-ClusterNode -Cluster cluster1

This example displays the name, id, and state of each node, or server, in the cluster named cluster1.

Example 3

Get-ClusterNode -Name node1 | Get-ClusterResource

This example lists all cluster resources that are currently owned by node named node1 on the local cluster.

PARAMETERS

-Cluster

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.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-InputObject

Specifies the cluster on which to enumerate cluster nodes.

Type: PSObject
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Name

Specifies the name of the cluster node to get.

Type: StringCollection
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.FailoverClusters.PowerShell.Cluster

OUTPUTS

Microsoft.FailoverClusters.PowerShell.ClusterNode

NOTES

RELATED LINKS

Add-ClusterNode

Get-ClusterResource

Remove-ClusterNode

Resume-ClusterNode

Start-ClusterNode

Stop-ClusterNode

Suspend-ClusterNode