---
title: "Configure cluster quorum NodeWeight settings"
descriptoin: Describes how to configure the NodeWeight settings for a member node in a Windows Server Failover Cluster.
ms.custom: "seo-lt-2019"
ms.date: "03/14/2017"
ms.prod: sql
ms.reviewer: ""
ms.technology: high-availability
ms.topic: conceptual
helpviewer_keywords:
- "Availability Groups [SQL Server], WSFC clusters"
- "quorum [SQL Server], AlwaysOn and WSFC quorum"
ms.assetid: cb3fd9a6-39a2-4e9c-9157-619bf3db9951
author: MashaMSFT
ms.author: mathoma
---
# Configure Cluster Quorum NodeWeight Settings
[!INCLUDE[appliesto-ss-xxxx-xxxx-xxx-md](../../../includes/appliesto-ss-xxxx-xxxx-xxx-md.md)]
This topic describes how to configure NodeWeight settings for a member node in a Windows Server Failover Clustering (WSFC) cluster. NodeWeight settings are used during quorum voting to support disaster recovery and multi-subnet scenarios for [!INCLUDE[ssHADR](../../../includes/sshadr-md.md)] and [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Failover Cluster Instances.
- **Before you start:** [Prerequisites](#Prerequisites), [Security](#Security)
- **To view quorum NodeWeight settings using:** [Using Powershell](#PowerShellProcedure), [Using Cluster.exe](#CommandPromptProcedure)
- [Related Content](#RelatedContent)
## Before You Start
### Prerequisites
This feature is supported only in [!INCLUDE[firstref_longhorn](../../../includes/firstref-longhorn-md.md)] or later versions.
> [!IMPORTANT]
> In order to use NodeWeight settings, the following hotfix must be applied to all servers in the WSFC cluster:
>
> [KB2494036](https://support.microsoft.com/kb/2494036): A hotfix is available to let you configure a cluster node that does not have quorum votes in [!INCLUDE[firstref_longhorn](../../../includes/firstref-longhorn-md.md)] and in [!INCLUDE[winserver2008r2](../../../includes/winserver2008r2-md.md)]
> [!TIP]
> If this hotfix is not installed, the examples in this topic will return empty or NULL values for NodeWeight.
### Security
The user must be a domain account that is member of the local Administrators group on each node of the WSFC cluster.
## Using Powershell
##### To configure NodeWeight settings
1. Start an elevated Windows PowerShell via **Run as Administrator**.
2. Import the `FailoverClusters` module to enable cluster commandlets.
3. Use the `Get-ClusterNode` object to set the `NodeWeight` property for each node in the cluster.
4. Output the cluster node properties in a readable format.
### Example (Powershell)
The following example changes the NodeWeight setting to remove the quorum vote for the "AlwaysOnSrv1" node, and then outputs the settings for all nodes in the cluster.
```powershell
Import-Module FailoverClusters
$node = "AlwaysOnSrv1"
(Get-ClusterNode $node).NodeWeight = 0
$cluster = (Get-ClusterNode $node).Cluster
$nodes = Get-ClusterNode -Cluster $cluster
$nodes | Format-Table -property NodeName, State, NodeWeight
```
## Using Cluster.exe
> [!NOTE]
> The cluster.exe utility is deprecated in the [!INCLUDE[winserver2008r2](../../../includes/winserver2008r2-md.md)] release. Please use PowerShell with Failover Clustering for future development. The cluster.exe utility will be removed in the next release of Windows Server. For more information, see [Mapping Cluster.exe Commands to Windows PowerShell Cmdlets for Failover Clusters](https://technet.microsoft.com/library/ee619744\(WS.10\).aspx).
##### To configure NodeWeight settings
1. Start an elevated Command Prompt via **Run as Administrator**.
2. Use **cluster.exe** to set `NodeWeight` values.
### Example (Cluster.exe)
The following example changes the NodeWeight value to remove the quorum vote of the "AlwaysOnSrv1" node in the "Cluster001" cluster.
```ms-dos
cluster.exe Cluster001 node AlwaysOnSrv1 /prop NodeWeight=0
```
## Related Content
- [View Events and Logs for a Failover Cluster](https://technet.microsoft.com/library/cc772342\(WS.10\).aspx)
- [Get-ClusterLog Failover Cluster Cmdlet](https://technet.microsoft.com/library/ee461045.aspx)
## See Also
[WSFC Quorum Modes and Voting Configuration (SQL Server)](../../../sql-server/failover-clusters/windows/wsfc-quorum-modes-and-voting-configuration-sql-server.md)
[View Cluster Quorum NodeWeight Settings](../../../sql-server/failover-clusters/windows/view-cluster-quorum-nodeweight-settings.md)
[Failover Cluster Cmdlets in Windows PowerShell Listed by Task Focus](https://technet.microsoft.com/library/ee619761\(WS.10\).aspx)