1

PowerShell cmdlet 'get-ClusterQuorum' output is not showing "QuorumType" column. Has anybody seen this before? Thanks

1
  • What Windows ? Did u tired spec cluster name like Get-ClusterQuorum -Cluster Cluster1 ? Commented Aug 11, 2014 at 18:24

1 Answer 1

1

Perhaps the default formatting for the output of that command has been modified. You can override the default formatting with the Select-Object cmdlet.

Get-ClusterQuorum | Select-Object Cluster, QuorumResource, QuorumType

Using that command will ensure that those three columns are outputted to the console.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.