Resume-ClusterNode

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

Syntax

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

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.

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.

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
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Failback

Sets the policy to bring back drained workloads to the node. The acceptable values for this parameter are:NoFailback, Immediate, and Policy. Policy can be configured to not failback, failback immediately, or failback only during specific hours.

Type:ResumeClusterNodeFailbackType
Accepted values:NoFailback, Immediate, Policy
Position:1
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-InputObject

Specifies the group, node, resource, or service for which or cluster on which to run the cmdlet.

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

-Name

Specifies the name of the group, node, resource, or service for which or cluster on which to run the cmdlet.

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

Inputs

Microsoft.FailoverClusters.PowerShell.ClusterNode

Outputs

Microsoft.FailoverClusters.PowerShell.ClusterNode