PowerShell Logo Small

Get-ClusterNode



This is the built-in help made by Microsoft for the command 'Get-ClusterNode', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

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

SYNTAX


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



Search powershellhelp.space

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.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321033
Add-ClusterNode
Get-ClusterResource
Remove-ClusterNode
Resume-ClusterNode
Start-ClusterNode
Stop-ClusterNode
Suspend-ClusterNode

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterNode
Name ID State
---- -- -----
node1 1 Up
node2 2 Up
node3 3 Up
node4 4 Up



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




EXAMPLE 2

PS C:\>Get-ClusterNode -Cluster cluster1
Name ID State
---- -- -----
node1 1 Up
node2 2 Up



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




EXAMPLE 3

PS C:\>Get-ClusterNode –Name node1 | Get-ClusterResource
Name State Group ResourceType
---- ----- ----- ------------
Cluster Disk 1 Online Cluster Group Physical Disk
Cluster IP Address Online Cluster Group IP Address
Cluster IP Addre... Online Cluster Group IPv6 Address
Cluster Name Online Cluster Group Network Name
File Share Witness Offline Cluster Group File Share Witness



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