PowerShell Logo Small

Resume-ClusterNode



This is the built-in help made by Microsoft for the command 'Resume-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

Resumes a node from the paused state or brings back drained workloads to the node or both.

SYNTAX


Resume-ClusterNode [[-Name] <StringCollection>] [[-Failback] <ResumeClusterNodeFailbackType>] [-Cluster <String>] [-InputObject <PSObject>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Resume-ClusterNode cmdlet resumes activity on a failover cluster node after it has been suspended, or paused, or brings back drained workloads to the node, or both. When
a node is resumed, clustered roles that were drained from the node are returned to it, and clustered roles or resources that are currently offline can be brought online on
that node.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Resume-ClusterNode node1
Name State
---- -----
node1 Up



This example resumes node1 on the local cluster.




EXAMPLE 2

PS C:\>Resume-ClusterNode node2 -Cluster mycluster
Name State
---- -----
node2 Up



This example resumes node2 on the cluster called mycluster.




EXAMPLE 3

PS C:\>Get-ClusterNode | Resume-ClusterNode
Name State
---- -----
node1 Up



This example resumes all cluster nodes that are suspended, or paused, on the local cluster.




EXAMPLE 4

PS C:\>Get-ClusterNode | Resume-ClusterNode -Failback Immediate
Name State
---- -----
node2 Up



This example resumes all cluster nodes that are suspended, or paused, on the local cluster and immediately brings back the workloads drained from the nodes.