exam questions

Exam 70-740 All Questions

View all questions & answers for the 70-740 exam

Exam 70-740 topic 1 question 132 discussion

Actual exam question from Microsoft's 70-740
Question #: 132
Topic #: 1
[All 70-740 Questions]

You have two servers that run Windows Server 2016. The servers are configured as shown in the following table.

You need to create a failover cluster that contains both servers.
Which two commands should you run? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. wmic ComputerSystem Set Workgroup= "Workgroup2"
  • B. New-Cluster-Name Cluster1- Node Server1, Server2- AdministrativeAccessPoint DNS
  • C. New-Cluster-Name Cluster1- Node Server1, Server2- AdministrativeAccessPoint ActiveDirectoryAndDns
  • D. New-Cluster-Name Cluster1- Node Server1, Server2- AdministrativeAccessPoint None
  • E. netdom computername Server1/MakePrimary:server1.contoso.com
Show Suggested Answer Hide Answer
Suggested Answer: AB 🗳️

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
elopez2207
Highly Voted 4 years, 7 months ago
I tested in my lab. Correct answer is B & E. ***Explanation: This command (wmic ComputerSystem Set Workgroup= "Workgroup2") no change the workgroup name. I restarted my lab's pc and the workgroup name was the same. The workgroup names could be different, but the hosts must has "the same DNS suffix". My lab: PC1: LON-SVR1 / WG: WORKGROUP1 PC2: LON-SVR2 / WG: WORKGROUP2 DNS SUFFIX (To LON-SVR1 and LON-SVR2): contoso.com WORKGROUP CLUSTER: ClusterTest The commands were the following: 1) netdom computername LON-SVR1 /add:LON-SVR1.contoso.com 2) netdom computername LON-SVR1 /MakePrimary:LON-SVR1.contoso.com 3) New-Cluster -name ClusterTest -node LON-SVR1,LON-SVR2 -StaticAddress 172.16.0.220 -AdministrativeAccessPoint DNS my screenshots: https://drive.google.com/drive/folders/1xdsnnNOfx0m9rgaM1eqh6auzvor2qPNy?usp=sharing
upvoted 7 times
...
Riven
Highly Voted 5 years, 6 months ago
Correct answer is B & E. The servers do not need to be in the same workgroup but require the same DNS suffix
upvoted 5 times
falcon4fun
5 years, 6 months ago
From where did you get that it will be AD failover cluster? Where this was mentioned? It's workgroup cluster which requires same suffix, same local admin, administrativeAccessPoint = DNS and maybe same workgroup (not sure about last) http://woshub.com/workgroup-failover-cluster-windows-server-2016/
upvoted 2 times
Riven
5 years, 6 months ago
That's irrelevant. E configures the DNS suffix which is required for a workgroup cluster. They don't need to be in the same workgroup, thus A is wrong
upvoted 9 times
lbs
5 years ago
I agree. B & E
upvoted 2 times
...
...
...
...
Beitran
Most Recent 4 years, 6 months ago
Panek says A & B in his practice questions
upvoted 2 times
...
Neostar
4 years, 6 months ago
wmic ComputerSystem Set Workgroup= "Workgroup2" is not a valid command, the valid command is: wmic computersystem where name="%computername%" call joindomainorworkgroup name="Workgroup2" This makes A a wrong answer. The correct answer is B & E (as netdom command is correct and required to add the dns suffix)
upvoted 1 times
jaskol9
4 years, 5 months ago
Aldrid 11 months, 1 week ago wrote: netdom /MakePrimary - is rename command - focus on this (you will only rename the server) - in that case in the way of elimination (we point B and every one is agree with that so C, D can't be the proper answer) if we eliminate E - stays A & B Because the Question is: Which two commands should you run? They should ask about 1 command with those answers. I think it should be only B becaus I agree that workgroup does not matter :). NETDOM ComputerName /MakePrimary Make an existing alternate name into the primary name. The name being made primary must be a fully qualified DNS name (FQDN - computer name followed by primary DNS suffix, such as comp1.example.com.). https://ss64.com/nt/netdom-computername.html
upvoted 1 times
...
...
GoldenFox
4 years, 7 months ago
Answer is A&B, people are confused by 2012 v 2016
upvoted 3 times
...
Tenshi
4 years, 9 months ago
As per MS netdom cmds are applied up until server 2012*. This makes E not correct. Between B-C-D the correct one is B. A does not fully serve the requirement but is the "most" correct one. Can some add to this thoughts? *https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc772217(v=ws.11)
upvoted 2 times
jam7272
4 years, 8 months ago
I agree that the use of netdom is suspicious. But the primary DNS suffix is a requirement and the same Workgroup name is not. So it must be E as the second answer. Netdom still works in the CMD line in new OSes. It is just deprecated.
upvoted 2 times
...
...
jam7272
4 years, 9 months ago
I agree there is some confusion over netdom. But the fact is that the primary DNS suffix must be the same on both nodes. So it must be B + E. If you run an ipconfig and look for a primary DNS suffix you will see that it has nothing to do with the Workgroup name. The Workgroup name is irrelevant as Workgroup Clusters use DNS for resolution and therefore only rely on the DNS suffix.
upvoted 2 times
...
promaster
4 years, 12 months ago
B&E makes the most sense, https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc835082(v=ws.11)
upvoted 1 times
gha
4 years, 10 months ago
E Make Not sens for a nondomain Computer. For a domain computer you have first to use netdom computername blabla /add:blablabla.ccc.xxx and after makePrimary A you change the workgroup name
upvoted 1 times
nonoelptirobo
4 years, 9 months ago
wmic change the workgroup but don't set the primary DNS (needed for the cluster with a DNS administrative point. the netdom command sets a primary DNS : (it's the given example) https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc835082(v=ws.11) netdom computername dc /makeprimary:altdc.example.com To rename a member server, you must use one of the existing alternate names for the computer as the new primary name. in our case it change server 1 into server1.contoso.com hence B & E
upvoted 1 times
...
...
...
panda
5 years ago
I think A is correct at least. I have decided that based on an assumption that servers on workgroup cluster have to join same workgroup. I checked following link, it's Microsoft document, which describes the workgroup cluster composed of two nodes in same workgroup. https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sql/virtual-machines-windows-sql-workgroup-availability-group
upvoted 4 times
...
MikeLNeal
5 years, 4 months ago
https://ss64.com/nt/netdom-computername.html /MakePrimary Make an existing alternate name into the primary name. The name being made primary must be a fully qualified DNS name (FQDN - computer name followed by primary DNS suffix, such as comp1.example.com.). I believe it is B & E
upvoted 3 times
...
glukken
5 years, 4 months ago
Since DNS is based on the same domainname suffix, and this is a requirement for non-AD based failover clusters, there is no need to have the computers in the same workgroup. So A is irrelevant but E is! so I agree that the answer is B & E
upvoted 2 times
...
Aldrid
5 years, 4 months ago
netdom /MakePrimary - is rename command U need netdom join to add computer to the domain So... A&B correct
upvoted 4 times
...
rashad040
5 years, 6 months ago
Correct answer is A & B https://www.tenforums.com/tutorials/36133-change-workgroup-windows-10-a.html
upvoted 2 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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago