Skip to content

Commit e8be874

Browse files
authored
Changed "Always OnSrv1" to "AlwaysOnSrv1"
Removed space in cluster node name "Always OnSrv1" and changed to "AlwaysOnSrv1"
1 parent ec8f631 commit e8be874

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/sql-server/failover-clusters/windows/configure-cluster-quorum-nodeweight-settings.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ ms.workload: "On Demand"
6161
4. Output the cluster node properties in a readable format.
6262

6363
### Example (Powershell)
64-
The following example changes the NodeWeight setting to remove the quorum vote for the “Always OnSrv1” node, and then outputs the settings for all nodes in the cluster.
64+
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.
6565

6666
```powershell
6767
Import-Module FailoverClusters
6868
69-
$node = “Always OnSrv1
69+
$node = “AlwaysOnSrv1
7070
(Get-ClusterNode $node).NodeWeight = 0
7171
7272
$cluster = (Get-ClusterNode $node).Cluster
@@ -87,10 +87,10 @@ $nodes | Format-Table -property NodeName, State, NodeWeight
8787
2. Use **cluster.exe** to set `NodeWeight` values.
8888

8989
### Example (Cluster.exe)
90-
The following example changes the NodeWeight value to remove the quorum vote of the “Always OnSrv1” node in the “Cluster001” cluster.
90+
The following example changes the NodeWeight value to remove the quorum vote of the “AlwaysOnSrv1” node in the “Cluster001” cluster.
9191

9292
```ms-dos
93-
cluster.exe Cluster001 node Always OnSrv1 /prop NodeWeight=0
93+
cluster.exe Cluster001 node AlwaysOnSrv1 /prop NodeWeight=0
9494
```
9595

9696
## <a name="RelatedContent"></a> Related Content

0 commit comments

Comments
 (0)