PowerShell Logo Small

Get-ClusterQuorum



This is the built-in help made by Microsoft for the command 'Get-ClusterQuorum', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets information about the quorum configuration of a failover cluster.

SYNTAX


Get-ClusterQuorum [[-Cluster] <String>] [-InputObject <PSObject>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ClusterQuorum cmdlet gets information about the quorum configuration of a failover cluster.


The quorum configuration in a failover cluster determines the number of failures that the cluster can sustain. If an additional failure occurs, then the cluster must stop
running. The relevant failures in this context are failures of nodes or, in some cases, of a disk witness (which contains a copy of the cluster configuration) or file share
witness.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321036
Set-ClusterQuorum

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterQuorum
Cluster QuorumResource QuorumType
------- -------------- ----------
cluster1 Cluster Disk 1 NodeAndDiskMajority



This example displays the quorum configuration for the local cluster.




EXAMPLE 2

PS C:\>Get-ClusterQuorum -Cluster Cluster1
Cluster QuorumResource QuorumType
------- -------------- ----------
mycluster NodeMajority



This example displays the quorum configuration for the cluster named Cluster1.