exam questions

Exam MS-201 All Questions

View all questions & answers for the MS-201 exam

Exam MS-201 topic 2 question 68 discussion

Actual exam question from Microsoft's MS-201
Question #: 68
Topic #: 2
[All MS-201 Questions]

DRAG DROP -
You have a Microsoft Exchange Server 2019 organization.
You need to identify which accounts in Active Directory are assigned permissions to dismount mailbox databases.
How should you complete the command? To answer, drag the appropriate values to the correct targets. Each value may he used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
Reference:
https://docs.microsoft.com/en-us/powershell/exchange/find-exchange-cmdlet-permissions?view=exchange-ps

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
Jayaprae
4 years, 4 months ago
There is no -Cmdlet parameter for Get-ManagementRoleEntry. It is available for Get-ManagementRole
upvoted 2 times
...
donathon
4 years, 5 months ago
Answer is correct: Get-ManagementRoleEntry -Identity *\<Cmdlet> [-Parameters <Parameter1>,<Parameter2>,...] $na = Get-ManagementRole; $na | foreach {If ((Get-ManagementRoleAssignment -Role $_.Name -Delegating $false) -eq $null) {$_.Name}} Use the Get-ManagementRole cmdlet to view management roles that have been created in your organization. https://docs.microsoft.com/en-us/powershell/exchange/find-exchange-cmdlet-permissions?view=exchange-ps#troubleshooting https://docs.microsoft.com/en-us/powershell/module/exchange/get-managementrole?view=exchange-ps
upvoted 1 times
...
Gracemade
4 years, 5 months ago
Carlos1787 is right. And is Get-ManagementRole and Get-ManagementRoleAssignment
upvoted 2 times
...
Carlos1787
4 years, 7 months ago
the states answer is incorrect. This is straight from the referenced doc. $Perms = Get-ManagementRole -Cmdlet <Cmdlet> [-CmdletParameters <Parameter1>,<Parameter2>,...] then $Perms | foreach {Get-ManagementRoleAssignment -Role $_.Name -Delegating $false | Format-Table -Auto Role,RoleAssigneeType,RoleAssigneeName}
upvoted 3 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 ...