PowerShell Logo Small

Stop-ClusterNode



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

Stops the Cluster service on a node in a failover cluster.

SYNTAX


Stop-ClusterNode [[-Name] <StringCollection>] [-Cluster <String>] [-InputObject <PSObject>] [-Wait <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Stop-ClusterNode cmdlet stops the Cluster service on a node in a failover cluster. If stopping the node brings the cluster below quorum, the operation is not permitted.
To stop the cluster, use the Stop-Cluster cmdlet instead.


Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Stop-ClusterNode –Name node3
Name State
---- -----
node3 Down



This example stops the Cluster service on the node named node3 of the local cluster.




EXAMPLE 2

PS C:\>Stop-ClusterNode –Name node1 -Cluster cluster2
Name State
---- -----
node1 Down



This example stops the Cluster service on the node named node1 on the cluster named cluster2.