PowerShell cmdlet 'get-ClusterQuorum' output is not showing "QuorumType" column. Has anybody seen this before? Thanks
1 Answer
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.