Hello Sakuraime,
Thank you for your question and for getting in touch.
You can check some commands via PowerShell for cmdlet and other Windows PowerShell cmdlets to configure cluster quorum.
The following example changes the quorum setting on the CONTOSO-FC1 cluster to a single node majority configuration with no quorum witness.
Set-ClusterQuorum –Cluster CONTOSO-FC1 -NodeMajority
The following example changes the quorum setting on the local cluster to a majority node with witness setting. The disk resource named Cluster Disk 2 is configured as a disk witness.
Set-ClusterQuorum -NodeAndDiskMajority "Cluster Disk 2"
The following example changes the quorum setting on the local cluster to a majority node with witness setting. The file sharing resource named \ CONTOSO-FS \ fsw is configured as a file sharing witness.
Set-ClusterQuorum -NodeAndFileShareMajority "\fileserver\fsw"
The following example removes the quorum vote from node ContosoFCNode1 in the local cluster.
(Get-ClusterNode ContosoFCNode1).NodeWeight=0
The following example adds the quorum vote to node ContosoFCNode1 in the local cluster.
(Get-ClusterNode ContosoFCNode1).NodeWeight=1
The following example enables the DynamicQuorum property of the CONTOSO-FC1 cluster (if it was previously disabled):
(Get-Cluster CONTOSO-FC1).DynamicQuorum=1
See other guidelines that can help you using the link below
If the answer was helpful, please don't forget to vote up or accept as an answer, thanks.
Graciously,
Samuel