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:

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

  1. Sam says:

    Does this question makes sende? I saw a similar one:

    “Your network contains an Active Directory domain named contoso.com. The domain contains four member servers named Server1, Server2, Servers, and Server4. All servers run Windows Server 2012 R2.

    Server1 and Server2 are located in a site named Site1. Server3 and Server4 are located in a site named Site2. The servers are configured as nodes in a failover cluster named Cluster1.

    Cluster1 is configured to use the Node Majority quorum configuration.

    You need to ensure that Server1 is the only server in Site1 that can vote to maintain quorum.

    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.”

    in this case correct would be:
    Get-ClusterNode Server2 | $_.NodeWeight = 0
    Explanation:
    http://technet.microsoft.com/en-us/library/ee460990.aspx




    0



    0
    1. Tyson says:

      Yes, and the answer is correct.

      I think it’s a reworded question to make it more confusing, maybe because people study the dumps 😛

      It’s saying Server 1+3 in Site 1, Server 2+4 in Site 2, Site 2 needs to be the cluster node if the Site link is lost. Removing the vote for one of the servers in Site 1 makes it so that Site 1 will ALWAYS have majority, unless BOTH servers in Site 2 are lost, which would then cause there to be no cluster, as too many nodes will have failed.




      1



      1
  2. Not Failed says:

    Agree with Sam.
    When the link between the sites are lost, there are no Majority on both sides. The configuration with Node Majority and Dynamic Quorum Management disabled, would lead to have no working cluster on both sides, because 2 of 4 are still 50%, which is not a Majority. So to have the cluster running in site 2, you need to take out a host in site 2 from voting. You can reach this configuration with:
    Get-ClusterNode Server2 | $_.NodeWeight = 0




    0



    1
  3. Ebrahim Ali says:

    The answer is correct which is Get-ClusterNode Server1 | $_.NodeWeight = 0

    because during cluster configuring this command will make the Node Majority for all cluster nodes and odd number, so when the connection between the two sites lost then Site2 will think that Site1 is failed and Site1 will still be running because it is the winner because it has two nodes whereas Site1 has only one Node which is Server2 because Server1 Node Weight is set to 0.




    0



    1

Leave a Reply