forked from Edgar-K/Quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
70-742.json
8448 lines (8448 loc) · 237 KB
/
70-742.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"title": "Identity with Windows Server 2016",
"description": "161 questions available in Multiple Choice en Multiple Answer format.",
"author": {
"id": "00001",
"name": "Snodecoder",
"image": "http://www.example.com/image.png"
},
"createdAt": "2020-07-01T22:55:11.002Z",
"code": "70-742",
"time": 120,
"pass": 75,
"image": "http://www.example.com/image.png",
"cover": [
{
"variant": 2,
"text": "Identity with Windows Server 2016"
},
{
"variant": 1,
"text": "161 questions available in Multiple Choice en Multiple Answer format."
}
],
"test": [
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "You work for a company named Contoso, Ltd."
},
{
"variant": 1,
"text": "The network contains an Active Directory forest named contoso.com. A forest trust exists between contoso.com and an Active Directory forest named adatum.com."
},
{
"variant": 1,
"text": "The contoso.com forest contains the objects configured as shown in the following table."
},
{
"variant": 0,
"text": "https://start.opensourceexams.org/exams/70-742/images/image1.jpg"
},
{
"variant": 1,
"text": "Group1 and Group2 contain only user accounts."
},
{
"variant": 1,
"text": "Contoso hires a new remote user named User3. User3 will work from home and will use a computer named Computer3 that runs Windows 10. Computer3 is currently in a workgroup."
},
{
"variant": 1,
"text": "An administrator named Admin1 is a member of the Domain Admins group in the contoso.com domain."
},
{
"variant": 1,
"text": "From Active Directory Users and Computers, you create an organizational unit (OU) named OU1 in the contoso.com domain, and then you create a contact named Contact1 in OU1."
},
{
"variant": 1,
"text": "An administrator of the adatum.com domain runs the Set-ADUser cmdlet to configure a user named User1 to have a user logon name of [email protected]."
},
{
"variant": 1,
"text": "You need to ensure that User2 can add Group4 as a member of Group5."
},
{
"variant": 1,
"text": "What should you modify?"
},
{
"variant": 1,
"text": " "
}
],
"choices": [
{
"label": "A",
"Text": "the group scope of Group5"
},
{
"label": "B",
"Text": "the Managed By settings of Group4"
},
{
"label": "C",
"Text": "the group scope of Group4"
},
{
"label": "D",
"Text": "the Managed By settings of Group5"
}
],
"answer": [
false,
false,
false,
true
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "You work for a company named Contoso, Ltd."
},
{
"variant": 1,
"text": "The network contains an Active Directory forest named contoso.com. A forest trust exists between contoso.com and an Active Directory forest named adatum.com."
},
{
"variant": 1,
"text": "The contoso.com forest contains the objects configured as shown in the following table."
},
{
"variant": 0,
"text": "https://start.opensourceexams.org/exams/70-742/images/image2.jpg"
},
{
"variant": 1,
"text": "Group1 and Group2 contain only user accounts."
},
{
"variant": 1,
"text": "Contoso hires a new remote user named User3. User3 will work from home and will use a computer named Computer3 that runs Windows 10. Computer3 is currently in a workgroup."
},
{
"variant": 1,
"text": "An administrator named Admin1 is a member of the Domain Admins group in the contoso.com domain."
},
{
"variant": 1,
"text": "From Active Directory Users and Computers, you create an organizational unit (OU) named OU1 in the contoso.com domain, and then you create a contact named Contact1 in OU1."
},
{
"variant": 1,
"text": "An administrator of the adatum.com domain runs the Set-ADUser cmdlet to configure a user named User1 to have a user logon name of [email protected]."
},
{
"variant": 1,
"text": "End or repeated scenario."
},
{
"variant": 1,
"text": "You need to ensure that Admin1 can add Group2 as a member of Group3."
},
{
"variant": 1,
"text": "What should you modify?"
}
],
"choices": [
{
"label": "A",
"Text": "Modify the Security settings of Group3."
},
{
"label": "B",
"Text": "Modify the group scope of Group3."
},
{
"label": "C",
"Text": "Modify the group type of Group3."
},
{
"label": "D",
"Text": "Set Admin1 as the manager of Group3."
},
{
"label": "E",
"Text": "Add Admin1 to the Enterprise Admins group"
}
],
"answer": [
false,
true,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory forest named contoso.com"
},
{
"variant": 1,
"text": "Your company plans to hire 500 temporary employees for a project that will last 90 days."
},
{
"variant": 1,
"text": "You create a new user account for each employee. An organizational unit (OU) named Temp contains the user accounts for the employees."
},
{
"variant": 1,
"text": "You need to prevent the new users from accessing any of the resources in the domain after 90 days."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Run the Get-ADUser cmdlet and pipe the output to the Set-ADUser cmdlet."
},
{
"label": "B",
"Text": "Create a group that contains all of the users in the Temp OU. Create a Password Setting object (PSO) for the new group."
},
{
"label": "C",
"Text": "Create a Group Policy object (GPO) and link the GPO to the Temp OU. Modify the Password Policy settings of the GPO."
},
{
"label": "D",
"Text": "Run the Get-ADOrganizationalUnit cmdlet and pipe the output to the Set-Date cmdlet."
}
],
"answer": [
true,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory forest. The forest contains two domains named litwarenc.com and contoso.com. The contoso.com domain contains two domains controllers named LON-DC01 and LON-DC02."
},
{
"variant": 1,
"text": "The domain controllers are located in a site named London that is associated to a subnet of 192.168.10.0/24"
},
{
"variant": 1,
"text": "You discover that LON-DC02 is not a global catalog server. You need to configure LON-DC02 as a global catalog server."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "From Active Directory Sites and Services, modify the properties of the 192.168.10.0/24 IP subnet."
},
{
"label": "B",
"Text": "From Windows PowerShell, run the Set-NetNatGlobal cmdlet."
},
{
"label": "C",
"Text": "From Active Directory Sites and Services, modify the NTDS Settings object of LON-DC02."
},
{
"label": "D",
"Text": "From Windows PowerShell, run the Enable-ADOptionalFeature cmdlet."
},
{
"label": "E",
"Text": "From the properties of the LON-DC02 computer account in Active Directory Users and Computers, modify the NTDS settings."
},
{
"label": "F",
"Text": "From the properties of the LON-DC02 computer account in Active Directory Users and Computers, modify the City attribute."
},
{
"label": "G",
"Text": "From the properties of the Domain Controllers organizational unit (OU) in Active Directory Users and Computers, modify the Security settings."
}
],
"answer": [
false,
false,
true,
false,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain functional level is Windows Server 2012 R2."
},
{
"variant": 1,
"text": "You need to secure several high-privilege user accounts to meet the following requirements:"
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Create a universal security group for the user accounts and modify the Security settings of the group."
},
{
"label": "B",
"Text": "Add the users to the Windows Authorization Access Group group."
},
{
"label": "C",
"Text": "Add the user to the Protected Users group."
},
{
"label": "D",
"Text": "Create a separate organizational unit (OU) for the user accounts and modify the Security settings of the OU."
}
],
"answer": [
false,
false,
true,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory forest named contoso.com. Users frequently access the website of an external partner company. The URL of the website is http://partners.adatum.com."
},
{
"variant": 1,
"text": "The partner company informs you that it will perform maintenance on its Web server and that the IP addresses of the Web server will change."
},
{
"variant": 1,
"text": "After the change is complete, the users on your internal network report that they fail to access the website. However, some users who work from home report that they can access the website."
},
{
"variant": 1,
"text": "You need to ensure that your DNS servers can resolve partners.adatum.com to the correct IP address immediately."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Run dnscmd and specify the CacheLockingPercent parameter."
},
{
"label": "B",
"Text": "Run Set-DnsServerGlobalQueryBlockList."
},
{
"label": "C",
"Text": "Run ipconfig and specify the Renew parameter."
},
{
"label": "D",
"Text": "Run Set-DnsServerCache."
}
],
"answer": [
false,
false,
false,
true
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "You network contains one Active Directory domain named adatum.com. The domain contains a DNS server named Server1 that runs Windows Server 2016. All domain computers use Server1 for DNS."
},
{
"variant": 1,
"text": "You sign adatum.com by using DNSSEC. "
},
{
"variant": 1,
"text": "You need to configure the domain computers to validate DNS responses for adatum.com records."
},
{
"variant": 1,
"text": "What should you configure in Group Policy?"
}
],
"choices": [
{
"label": "A",
"Text": "Network List Manager Policies"
},
{
"label": "B",
"Text": "Network Access Protection (NAP)"
},
{
"label": "C",
"Text": "Name Resolution Policy"
},
{
"label": "D",
"Text": "Public Key Policy"
}
],
"answer": [
false,
false,
true,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": " "
},
{
"variant": 1,
"text": "You work for a company named Contoso, Ltd."
},
{
"variant": 1,
"text": "The network contains an Active Directory forest named contoso.com. A forest trust exists between contoso.com and an Active Directory forest named adatum.com. The contoso.com forest contains the objects configured as shown in the following table."
},
{
"variant": 0,
"text": "https://start.opensourceexams.org/exams/70-742/images/image2.jpg"
},
{
"variant": 1,
"text": "Group1 and Group2 contain only user accounts."
},
{
"variant": 1,
"text": "Contoso hires a new remote user named User3. User3 will work from home and will use a computer named Computer3 that runs Windows 10. Computer3 is currently in a workgroup."
},
{
"variant": 1,
"text": "An administrator named Admin1 is a member of the Domain Admins group in the contoso.com domain."
},
{
"variant": 1,
"text": "From Active Directory Users and Computers, you create an organizational unit (OU) named OU1 in the contoso.com domain, and then you create a contact named Contact1 in OU1."
},
{
"variant": 1,
"text": "An administrator of the adatum.com domain runs the Set-ADUser cmdlet to configure a user named User1 to have a user logon name of [email protected]."
},
{
"variant": 1,
"text": " "
},
{
"variant": 1,
"text": "You need to ensure that Admin1 can convert Group1 to a global group."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Add Admin1 to the Enterprise Admins group."
},
{
"label": "B",
"Text": "Remove all the members from Group1."
},
{
"label": "C",
"Text": "Modify the Security settings of Group1."
},
{
"label": "D",
"Text": "Convert Group1 to a universal security group."
}
],
"answer": [
false,
true,
false,
false
],
"explanation": null
},
{
"variant": 1,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain contains five domain controllers."
},
{
"variant": 1,
"text": "You have a branch office that has a local support technician named Tech1. Tech1 installs Windows Server 2016 on a server named RODC1 in a workgroup."
},
{
"variant": 1,
"text": "You need Tech1 to deploy RODC1 as a read-only domain controller (RODC) in the contoso.com domain."
},
{
"variant": 1,
"text": "Which three actions should you perform? Each correct answer presents part of the solution."
}
],
"choices": [
{
"label": "A",
"Text": "Instruct Tech1 to run the Active Directory Domain Services Configuration Wizard."
},
{
"label": "B",
"Text": "Create an RODC computer account by using Active Administrative Center."
},
{
"label": "C",
"Text": "Instruct Tech1 to run dcpromo.exe on RODC1."
},
{
"label": "D",
"Text": "Instruct Tech1 to install the Active Directory Domain Services server role on RODC1."
},
{
"label": "E",
"Text": "Modify the permissions of the Domain Controllers organizational unit (OU)."
}
],
"answer": [
true,
true,
false,
true,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain functional level is Windows Server 2012 R2."
},
{
"variant": 1,
"text": "Your company hires a new security administrator to manage sensitive user data. You create a user account named Security1 for the security administrator."
},
{
"variant": 1,
"text": "You need to ensure that the password for Security1 has at least 12 characters and is modified every 10 days. The solution must apply to Security1 only."
},
{
"variant": 1,
"text": "Which tool should you use?"
}
],
"choices": [
{
"label": "A",
"Text": "Dsadd quota"
},
{
"label": "B",
"Text": "Dsmod"
},
{
"label": "C",
"Text": "Active Directory Administrative Center"
},
{
"label": "D",
"Text": "Dsacls"
},
{
"label": "E",
"Text": "Dsamain"
},
{
"label": "F",
"Text": "Active Directory Users and Computers"
},
{
"label": "G",
"Text": "Ntdsutil"
},
{
"label": "H",
"Text": "Group Policy Management Console"
}
],
"answer": [
false,
false,
true,
false,
false,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain. All client computers run Windows 10."
},
{
"variant": 1,
"text": "A client computer named Computer1 was in storage for five months and was unused during that time. You attempt to sign in to the domain from Computer1 and receive an error message."
},
{
"variant": 1,
"text": "You need to ensure that you can sign in to the domain from Computer1."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Unjoin Computer1 from the domain, and then join the computer to the domain."
},
{
"label": "B",
"Text": "From Active Directory Administrative Center, reset the computer account of Computer1."
},
{
"label": "C",
"Text": "From Active Directory Administrative Center, disable Computer1, and then enable the computer account of Computer1."
},
{
"label": "D",
"Text": "From Active Directory Users and Computers, run the Delegation of Control Wizard."
},
{
"label": "E",
"Text": "From Windows PowerShell on Computer1, run the Restore-Computer cmdlet"
},
{
"label": "F",
"Text": "From a command prompt, run the Systemreset.exe command"
},
{
"label": "G",
"Text": "From Windows PowerShell on Computer1, run the Set-ADComputer cmdlet "
}
],
"answer": [
true,
false,
false,
false,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory forest. The forest contains two domains named contoso.com and fabrikam.com. The functional level of the forest and the domains is Windows Server 2008 R2."
},
{
"variant": 1,
"text": "You have a global group named Group1 in the contoso.com domain. Group1 contains the user accounts in the contoso.com."
},
{
"variant": 1,
"text": "You need to ensure that you can add the user accounts in the fabrikam.com domain to Group1."
},
{
"variant": 1,
"text": "What should you do?"
}
],
"choices": [
{
"label": "A",
"Text": "Assign the Domain Controllers group in fabrikam.com permissions to Group1."
},
{
"label": "B",
"Text": "Modify the scope of Group1 to Universal."
},
{
"label": "C",
"Text": "Raise the domain functional level contoso.com to Windows Server 2016."
},
{
"label": "D",
"Text": "Raise the domain functional level of fabriakm.com Windows Server 2016."
},
{
"label": "E",
"Text": "Change Group1 to a distribution group"
}
],
"answer": [
false,
true,
false,
false,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain contains a server named Server1 that runs Windows Server 2016. The computer account for Server1 is in organizational unit (OU) named OU1."
},
{
"variant": 1,
"text": "You create a Group Policy object (GPO) named GPO1 and link GPO1 to OU1."
},
{
"variant": 1,
"text": "You need to add a domain user named User1 to the local Administrators group on Server1."
},
{
"variant": 1,
"text": "Solution: From a domain controller, you run the Set-AdComputer cmdlet."
},
{
"variant": 1,
"text": "Does this meet the goal?"
}
],
"choices": [
{
"label": "A",
"Text": "Yes"
},
{
"label": "B",
"Text": "No"
}
],
"answer": [
false,
true
],
"explanation": [
{
"variant": 1,
"text": "References:"
},
{
"variant": 1,
"text": "https://technet.microsoft.com/es-es/library/hh852268(v=wps.620).aspx"
}
]
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain contains a server named Server1 that runs Windows Server 2016. The computer account for Server1 is in organizational unit (OU) named OU1."
},
{
"variant": 1,
"text": "You create a Group Policy object (GPO) named GPO1 and link GPO1 to OU1."
},
{
"variant": 1,
"text": "You need to add a domain user named User1 to the local Administrators group on Server1."
},
{
"variant": 1,
"text": "Solution: From the Computer Configuration node of GPO1, you configure the Local Users and Groups preference."
},
{
"variant": 1,
"text": "Does this meet the goal?"
}
],
"choices": [
{
"label": "A",
"Text": "Yes"
},
{
"label": "B",
"Text": "No"
}
],
"answer": [
true,
false
],
"explanation": [
{
"variant": 1,
"text": "References:"
},
{
"variant": 1,
"text": "https://www.ntweekly.com/2015/01/10/how-to-add-users-to-local-admin-group-using-group-policy-windows-server-2012/"
}
]
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain contains a server named Server1 that runs Windows Server 2016. The computer account for Server1 is in organizational unit (OU) named OU1."
},
{
"variant": 1,
"text": "You create a Group Policy object (GPO) named GPO1 and link GPO1 to OU1."
},
{
"variant": 1,
"text": "You need to add a domain user named User1 to the local Administrators group on Server1."
},
{
"variant": 1,
"text": "Solution: From the Computer Configuration node of GPO1, you configure the Account Policies settings."
},
{
"variant": 1,
"text": "Does this meet the goal?"
}
],
"choices": [
{
"label": "A",
"Text": "Yes"
},
{
"label": "B",
"Text": "No"
}
],
"answer": [
false,
true
],
"explanation": [
{
"variant": 1,
"text": "References:"
},
{
"variant": 1,
"text": "https://technet.microsoft.com/pt-pt/library/cc757692(v=ws.10).aspx"
}
]
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com. The domain contains a server named Server1 that runs Windows Server 2016."
},
{
"variant": 1,
"text": "The Computer account for Server1 is in organizational unit (OU) named OU1."
},
{
"variant": 1,
"text": "You create a Group Policy object (GPO) named GPO1 and link GPO1 to OU1."
},
{
"variant": 1,
"text": "You need to add a domain user named User1 to the local Administrators group on Server1."
},
{
"variant": 1,
"text": "Solution: From the Computer Configuration node of GPO1, you configure the Restricted Groups settings."
},
{
"variant": 1,
"text": "Does this meet the goal?"
}
],
"choices": [
{
"label": "A",
"Text": "Yes"
},
{
"label": "B",
"Text": "No"
}
],
"answer": [
true,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain named contoso.com."
},
{
"variant": 1,
"text": "All users are in an organizational unit (OU) named Corp_Users."
},
{
"variant": 1,
"text": "You plan to modify the description of all the users who have a string of 514 in their mobile phone number."
},
{
"variant": 1,
"text": "You need to view a list of the users that will be modified."
},
{
"variant": 1,
"text": "What should you run?"
}
],
"choices": [
{
"label": "A",
"Text": "Get-ADOrganizationalUnit-Filter “mobilePhone-Like ‘*514*’ ”"
},
{
"label": "B",
"Text": "Get-ADUser-LDAPFilter “(mobilePhone= ‘*514*’)”"
},
{
"label": "C",
"Text": "Get-ADUser-Filter “mobilePhone-Like ‘*514*’ ”"
},
{
"label": "D",
"Text": "Get-ADOrganizationalUnit-LDAPFilter “(mobilePhone= ‘*514*’)”"
}
],
"answer": [
false,
false,
true,
false
],
"explanation": null
},
{
"variant": 0,
"question": [
{
"variant": 1,
"text": "Your network contains an Active Directory domain. The domain contains a computer named Computer1 and an organizational unit (OU) named TestOU. TestOU contains 10 computer accounts that are used for testing. A Group Policy object (GPO) named GPO1 is linked to TestOU."
},
{
"variant": 1,
"text": "On Computer1, you modify the User Right Assignment by using the local policy."
},
{
"variant": 1,
"text": "You need to apply the User Right Assignment from Computer1 to the 10 test computers."
},
{
"variant": 1,
"text": "What should you do?"