Subsequent to my post where we’d covered some Windows Server Clustering PowerShell Commands I thought I’d add the two most useful ones I use.
This one shows us whether the Witness has a vote or not:
Get-Cluster | Format-Table Name, WitnessDynamicWeight
And the next one shows us our node names, whether they have and get a vote or not:
Get-ClusterNode -Name *|Format-Table NodeName, DynamicWeight, NodeWeight -AutoSize
Thanks for reading.
Windows Server Clustering PowerShell Commands