PowerShell Logo Small

Remove-ClusterNode



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

Removes a node from a failover cluster.

SYNTAX


Remove-ClusterNode [[-Name] <StringCollection>] [-Cluster <String>] [-Force] [-InputObject <PSObject>] [-Wait <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ClusterNode cmdlet removes a node from a failover cluster. After the node is removed, the node no longer functions as part of the cluster unless the node is added
back to the cluster. Removing a node is also called evicting a node from the cluster.


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=321054
Add-ClusterNode
Get-ClusterNode
Resume-ClusterNode
Start-ClusterNode
Stop-ClusterNode
Suspend-ClusterNode

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Remove-ClusterNode –Name node4



This example removes the node named node4 from the local cluster.




EXAMPLE 2

PS C:\>Remove-ClusterNode –Name node4 -Force



This example removes the node named node4 from the local cluster without prompting for confirmation.