PrepAway - Latest Free Exam Questions & Answers

What should you run from Windows PowerShell?

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.

PrepAway - Latest Free Exam Questions & Answers

Answer:

Explanation:
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

Configure Cluster Quorum NodeWeight Settings.

5 Comments on “What should you run from Windows PowerShell?

    1. MancaMulas says:

      Question/exhibit is correct, and so is the answer.

      You have the following scenario:

      Site1:

      Servers – Votes
      Server 1 – 1
      Server 3 – 1

      Site 2:

      Servers – Votes

      Server 2 – 1
      Server 4 – 1

      You’re asked to make sure that if the link between site 1 and site 2 fails, users in site 2 can still access Cluster 1.
      So you have to remove one of the votes for one of the servers located in site 1.
      Since in the answer area you only have server 1 or server 2 as options, you have to pick server 1 and remove the vote, since from those 2 options, server 1 is the only one that is in site 1.
      Hope i have clarified your doubts.




      0



      0
  1. Gary Trembath says:

    Question Asks for Site 2 to remain ON!

    Site 1 has server 1, so the command Get-ClusterNode server 1 | $_.NodeWeight = 0 wold create the following voting structure

    Site 1 Votes
    Server 1 = 0
    Server 3 = 1

    Site 2 Votes
    Server 2 = 1
    Server 4 = 1

    Site 2 has the majority in a network failure




    0



    0

Leave a Reply