exam questions

Exam 70-742 All Questions

View all questions & answers for the 70-742 exam

Exam 70-742 topic 1 question 69 discussion

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

HOTSPOT -
Your network contains an Active Directory domain named adatum.com. The domain contains the objects shown in the following table.

GroupA has Full Control permissions to a folder named Folder1. GroupB has Full Control permissions to a folder named Folder2.
You run the following PowerShell script:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:

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
Person
Highly Voted 5 years, 6 months ago
The correct question: $m1 = Get-ADUser -Filter {Name -eq 'User01'} $m2 = Get-ADUser -Filter {Name -eq 'User1'} Add-ADGroupMember -Identity Group1 -Members $m1 Add-ADGroupMember -Identity Group2 -Members $m2 Add-ADGroupMember -Identity GroupA -Members User01 Add-ADGroupMember -Identity GroupA -Members Group2 Add-ADGroupMember -Identity GroupB -Members User10 Add-ADGroupMember -Identity GroupB -Members Group1 For me: Yes, No, Yes.
upvoted 16 times
lbs
5 years ago
I agree Yes, No, Yes based on the above question
upvoted 2 times
...
Protomike
4 years, 11 months ago
I Agree Yes No Yes User1 is addedd to Group2 (lines 2, 4). In line 6, Group2 is added to GroupA. GroupA has full access to Folder1. User11 is not added to a group by the script. User11's account is unaffected by the script. User01 is added to Group1 (line 1, 3). Group1 is added to GroupB (line 8). GroupB has full access to Folder2.
upvoted 2 times
...
GoldenFox
4 years, 5 months ago
Thanks, something felt off with the given question. This makes sense!
upvoted 1 times
...
...
nomsboms
Highly Voted 5 years, 7 months ago
User1--> NO User11-->No User01-->No User 1 gets in Group2 but Group02 gets member of GroupA so its a No
upvoted 12 times
Charchar
5 years, 7 months ago
I'm really confused by how you came to the conclusion taht the first one is a no. Yeah user1 gets into Group2 which gets into GroupA, so why would it be No? GroupA has full permission to Folder1 so User1 should theoretically inherit that. I don't see anything saying that inheritance is disabled or that User1 has an explicit deny permission on Folder1 (or even one inherited from Group2). Can you please elaborate?
upvoted 1 times
Honken
5 years, 6 months ago
Group02 is a member of GroupA, not Group2. They are usually very picky with these questions/answers so I never assume anything that isn't explicitly written.
upvoted 1 times
...
...
...
GoldenFox
Most Recent 4 years, 5 months ago
The Question as well as Answer for this one are incorrect. The answers are: User1  Yes User11  No User01  Yes
upvoted 1 times
...
Aimismyname
4 years, 8 months ago
the images for this question are all off. i think vein has the best correction for this question.
upvoted 1 times
...
alexnt
4 years, 8 months ago
If the script is: $m1 = Get-ADUser -Filter {Name -like'User1*'} $m2 = Get-ADUser -Filter {Name -eq 'User1'} Add-ADGroupMember -Identity Group1 -Members $m1 Add-ADGroupMember -Identity Group2 -Members $m2 Add-ADGroupMember -Identity GroupA -Members User01 Add-ADGroupMember -Identity GroupA -Members Group2 Add-ADGroupMember -Identity GroupB -Members User10 Add-ADGroupMember -Identity GroupB -Members Group1 then correct answer is Y-Y-N(as VeiN said) But if it is: $m1 = Get-ADUser -Filter {Name -eq 'User01'} $m2 = Get-ADUser -Filter {Name -eq 'User1'} Add-ADGroupMember -Identity Group1 -Members $m1 Add-ADGroupMember -Identity Group2 -Members $m2 Add-ADGroupMember -Identity GroupA -Members User01 Add-ADGroupMember -Identity GroupA -Members Group2 Add-ADGroupMember -Identity GroupB -Members User10 Add-ADGroupMember -Identity GroupB -Members Group1 then correct answer is Y-N-Y(as Kamikazekiller said) The difference between them is in first line.
upvoted 2 times
...
VeiN
4 years, 8 months ago
Found a version of this question that makes most sense: https://issuu.com/testpassportexams/docs/70-742 $m1 = Get-ADUser -Filter {Name -like'User1*'} $m2 = Get-ADUser -Filter {Name -eq 'User1'} so in $m1 we have: user1,user11,user10 $m2 = user1 1. User1 has Full Controll permissions to Folder1: Yes GroupA gives Full Control to Folder1 and has nested Group2 which has user1 as member User11 has Full Controll permissions to Folder2: Yes GroupB gives Full Control to Folder2 and has nested Group1 which has user11 as member User01 has Full Controll permissions to Folder2: No User01 has access only to Folder1
upvoted 3 times
gd1f365
4 years, 5 months ago
I disagree, there is still no User11 mentioned in the objects table. User11 does not exist.
upvoted 1 times
...
...
Kamikazekiller
4 years, 11 months ago
Answer is correct. Yes, No, No
upvoted 2 times
Kamikazekiller
4 years, 11 months ago
My bad, the question here is incomplete. The correct question is: $m1 = Get-ADUser -Filter {Name -eq 'User01'} $m2 = Get-ADUser -Filter {Name -eq 'User1'} Add-ADGroupMember -Identity Group1 -Members $m1 Add-ADGroupMember -Identity Group2 -Members $m2 Add-ADGroupMember -Identity GroupA -Members User01 Add-ADGroupMember -Identity GroupA -Members Group2 Add-ADGroupMember -Identity GroupB -Members User10 Add-ADGroupMember -Identity GroupB -Members Group1 So, the correct answer is: YES, NO, YES
upvoted 3 times
...
...
Gomer
4 years, 12 months ago
I just wasted an hour or two of my life verifying this in my lab in exquisite detail, and I can affirm the above answer is correct,, e.g.: User1--> YES User11-->NO User01--> NO That is presuming the typos in the table are real and corrected follows: # Corrections to questions: Group11 "user" in table should probably be renamed to User11 (no Group11 or User11 in script) Group02 in script should be renamed to Group2 or there will be error (no Group02 in table) # Corrected script $m2 = Get-ADUser -Filter { Name -eq 'User1' } Add-ADGroupMember -Identity Group1 -Members $m1 <- Note: error for $m1 not defined Add-ADGroupMember -Identity Group2 -Members $m2 Add-ADGroupMember -Identity GroupA -Members User01 Add-ADGroupMember -Identity GroupA -Members Group2 Add-ADGroupMember -Identity GroupB -Members User10 Add-ADGroupMember -Identity GroupB -Members Group1 Of course others will disagree, but run it through the lab and analize, and I can't see you coming to any other results. If you can, maybe somebody else cares (I don't).
upvoted 4 times
...
jelly_baby
5 years ago
NO, NO, NO Reason for the first one - User1 > $m2 > Group2. Group2 is not added to any other folder or group, so it can't have permissions to Folder1. However, Group02 does have permissions as it's added to GroupA, but Group02 doesn't exist in the first table. If this is a typo, and it was really meant to say Group2 not Group02, then yes it would be correct. Just keep an eye out for this one in the exam and read the question...
upvoted 2 times
jelly_baby
5 years ago
And to be fair, this is a sh*t question from Microsoft. It's purposely trying to trick you. Why can't they all be letters or numbers, not mixed? User 1, then User11, and GroupB... it's stupid.
upvoted 2 times
...
...
LeonSKanady
5 years, 1 month ago
Answer will be User1: NO, User11: NO, User01: NO 1) User 1 is not added in script. So as its a general user and not included in script so it wont have any permission to operate Folder1/Folder2. 2) User11 is not added in script. So as its a general user and not included in script so it wont have any permission to operate Folder1/Folder2. 3) User01 is added in GROUP A and GROUP A has privilege of full access of Folder1 . But question asked about Folder2 for User01.... so its also NO .... Plz note: The question asked about "FULL CONTROL PERMISSION" not about generic permission that a user gets. So if all 3 conditions (scriipt, Group, Folder) is not satisfying the answer will be NO .... Correct me if i am wrong :)
upvoted 4 times
...
Ameer
5 years, 5 months ago
YES, NO, YES User1 is addedd to Group2 (lines 2, 4). In line 6, Group2 is added to GroupA. GroupA has full access to Folder1. User11 is not added to a group by the script. User11's account is unaffected by the script. User01 is added to Group1 (line 1, 3). Group1 is added to GroupB (line 8). GroupB has full access to Folder2.
upvoted 7 times
...
xziomal9
5 years, 6 months ago
Correct answer: YES, No, YES
upvoted 5 times
...
dangerrox
5 years, 7 months ago
Yes, No, Yes, Explanation: User1 is addedd to Group2 (lines 2, 4). In line 6, Group2 is added to GroupA. GroupA has full access to Folder1. User11 is not added to a group by the script. User11's account is unaffected by the script. User01 is added to Group1 (line 1, 3). Group1 is added to GroupB (line 8). GroupB has full access to Folder2.
upvoted 5 times
V1980
4 years, 5 months ago
I _think_ User11 was supposed to be $m1 That user isn't mentioned anywhere else, so that's my assumption. This whole Q is a mess.
upvoted 1 times
...
...
panda
5 years, 8 months ago
I think the example answer is correct. My logic is below on the assumption that Group11 is User11, Group2 is Group02. User1 > Group2 > GroupA > Folder1 > Yes < User1 has Folder1 User11 > nothing > No < USer11 has Folder2 User01 > GroupA > Folder1 > No < USer01 has Folder2
upvoted 7 times
...
minajahan
5 years, 8 months ago
Group11 = User11?
upvoted 1 times
...
renatovieira
5 years, 8 months ago
GROUP02 = GROUP2? don't think so.
upvoted 4 times
GenjamBhai
4 years, 10 months ago
User1 has Full Controll permissions to Folder1: Yes User11 has Full Controll permissions to Folder2: No User01 has Full Controll permissions to Folder2: Yes Correct image: https://www.cert2brain.com/Server/Demo.aspx?Exam=70-743
upvoted 6 times
Robbie
4 years, 7 months ago
this link does not show any correct image of this question.
upvoted 7 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 ...