exam questions

Exam 70-412 All Questions

View all questions & answers for the 70-412 exam

Exam 70-412 topic 2 question 20 discussion

Actual exam question from Microsoft's 70-412
Question #: 20
Topic #: 2
[All 70-412 Questions]

DRAG DROP -
Your network contains an Active Directory domain named contoso.com. The domain contains four member servers named Server1, Server2, Server3, and
Server4. All servers run Windows Server 2012 R2.
Server1 and Server3 are located in a site named Site1. Server2 and Server4 are located in a site named Site2. The servers are configured as nodes in a failover cluster named Cluster1.
Dynamic quorum management is disabled.
Cluster1 is configured to use the Node Majority quorum configuration.
You need to ensure that users in Site2 can access Cluster1 if the network connection between the two sites becomes unavailable.
What should you run from Windows PowerShell?
To answer, drag the appropriate commands to the correct location. Each command may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
NodeWeight settings are used during quorum voting to support disaster recovery and multi-subnet scenarios for AlwaysOn Availability Groups and SQL Server
Failover Cluster Instances.
Example (Powershell)
The following example changes the NodeWeight setting to remove the quorum vote for the "AlwaysOnSrv1" node.

Import-Module FailoverClusters -
$node = "AlwaysOnSrv1"
(Get-ClusterNode $node).NodeWeight = 0
Reference: Configure Cluster Quorum NodeWeight Settings.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
DanStafford
4 years, 11 months ago
Get-ClusterNode Server1 | $_.NodeWeight = 0 [Leaves both nodes in Site 2 with a vote & only one node in Site 1, so Site 2 will stay up] https://docs.microsoft.com/en-us/windows-server/failover-clustering/manage-cluster-quorum
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...