exam questions

Exam MS-100 All Questions

View all questions & answers for the MS-100 exam

Exam MS-100 topic 4 question 6 discussion

Actual exam question from Microsoft's MS-100
Question #: 6
Topic #: 4
[All MS-100 Questions]

Your company recently purchased a Microsoft 365 subscription.
You enable Microsoft Azure Multi-Factor Authentication (MFA) for all 500 users in the Azure Active Directory (Azure AD) tenant.
You need to generate a report that lists all the users who completed the Azure MFA registration process.
What is the best approach to achieve the goal? More than one answer choice may achieve the goal. Select the BEST answer.

  • A. From Azure Cloud Shell, run the Get-AzureADUser cmdlet.
  • B. From Azure Cloud Shell, run the Get-MsolUser cmdlet.
  • C. From the Azure Active Directory admin center, use the Usage & insights blade.
  • D. From the Azure Active Directory admin center, use the Risky sign-ins blade.
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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
jwaegebaert
Highly Voted 3 years, 12 months ago
Usage & insights blade also gives a quick overview of all the users registered with MFA. I would even say it's easier to use than the CLI
upvoted 15 times
BGM_YKA
3 years, 11 months ago
Usage & Insights, Authentication methods activity can give you a report on the registered members and who's not.
upvoted 4 times
BGM_YKA
3 years, 11 months ago
So is C. better than B.? I think C. is better for ad-hoc check as its pretty quick and you don't have to lookup the PS attributes to build the list
upvoted 5 times
...
Manojch
3 years, 11 months ago
where can i fing usage & Insights?
upvoted 1 times
AlexLiourtas
3 years, 4 months ago
azure ad portal.azure.com
upvoted 1 times
...
...
...
rfox321
3 years, 7 months ago
This is correct. Not only that, that commandlet is NOT an AzureAD command. It is an MSOL command.. two completely different powershell modules. I highly suggest trying it and/or reviewing.
upvoted 3 times
...
BoxGhost
3 years ago
Yep, it says select the best answer. This is much easier than messing about with CLI/PS commands https://techcommunity.microsoft.com/t5/azure-active-directory-identity/authentication-methods-usage-amp-insights/ba-p/745370
upvoted 1 times
...
...
One111
Most Recent 1 year, 7 months ago
Selected Answer: B
Both msol module and insights blade works,but you are tasked to prepare report. Export results to CSV from PowerShell seams easier and more precise option.
upvoted 1 times
...
Startkabels
2 years, 5 months ago
Selected Answer: C
C for Cool, checked in production
upvoted 2 times
...
reastman66
2 years, 6 months ago
I think things have changed on this question as you can only see limited details in the Usage & Insights in AAD. MFA isn't one of them. Back to using PowerShell Get-Msoluser. Another possibility is to use Microsoft Admin center --> active users --> multi-factor authentication sort by MFA status
upvoted 1 times
...
qari
2 years, 6 months ago
the qeuestion ist You need to generate a report that lists all the users who completed the Azure MFA registration process that means in Usage and insights you cant see a alist of users only in cloud shell you can generate a list , remember you dont need to use powershel .
upvoted 2 times
...
amitsharma170490
2 years, 7 months ago
B & C both are correct, if I have to choose the best answer then would go for C as UI is more User friendly then running the PS, but indeed PS is more helpful in automating things and getting things faster if the script is handy
upvoted 4 times
...
Kainzor
2 years, 9 months ago
I am not here to debate but from the article: https://docs.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-reporting It is specified in there the following: "Identify users who have registered for MFA using the PowerShell that follows. This set of commands excludes disabled users since these accounts cannot authenticate against Azure AD: Answer: Get-MsolUser There are different ways to get it sure but we can't really blame others when the question is so often unclear, just 1 single extra info would've made the right answer clearer.
upvoted 3 times
...
Claire91
2 years, 9 months ago
Answer C: From the Azure Active Directory admin center, use the Usage & insights blade. Azure Active Directory > Useage and Insights > Authentication methods Activity > You can see all users regisitered and the usage
upvoted 1 times
...
Rhoddy
2 years, 10 months ago
Selected Answer: B
Correct answer is B. Usage & Insights only reports on MFA METHOD and the question is asking for a report on USERS registered. You cannot get a list of users from Usage & Insights.
upvoted 3 times
...
Mug1992
3 years, 1 month ago
Selected Answer: C
Change my mind please - can you run Get-MsolUser in AZURE CLOUD SHELL ? I think it works, but with Windows Powershell with the module MSOnline. So defenitly C.
upvoted 2 times
One111
1 year, 7 months ago
Noone is asking to do it in Azure CLI. On the other hand, you can't generate report from insights blade. Msol looks best option.
upvoted 1 times
...
One111
1 year, 7 months ago
Sorry, description not,but answer imply usage of Azure CLI. You are right.
upvoted 1 times
...
...
joergsi
3 years, 3 months ago
You can use below PowerShell cmdlets to get a list of users with MFA Enabled: Install-Module MSOnline If the module is not installed already. Connect-MsolService Login with Global Admin account. Get-MsolUser -All | select DisplayName,BlockCredential,UserPrincipalName,@{N="MFA Status"; E={ if( $_.StrongAuthenticationRequirements.State -ne $null){ $_.StrongAuthenticationRequirements.State} else { "Disabled"}}} To get a list of users with MFA Enabled => Answer B is correct
upvoted 3 times
...
Wojer
3 years, 3 months ago
For me is C, because for Azure Cloud Shell you need to create a subscription, and for usage&insight it's just there.
upvoted 1 times
...
kanag1
3 years, 3 months ago
Selected Answer: C
Usage & Insights provides the details
upvoted 2 times
...
Storm
3 years, 4 months ago
Has anybody tried running the get-msoluser from Cloud Shell ? You all seems so sure ;-)...
upvoted 2 times
...
Shadow983
3 years, 4 months ago
Selected Answer: C
C is a better answer
upvoted 2 times
...
jkklim
3 years, 4 months ago
C is correct - i use it daily to generate report of MFA
upvoted 2 times
...
08twitch
3 years, 4 months ago
Selected Answer: B
It says open Cloud Shell, not open PowerShell. I'm answering B
upvoted 1 times
AlexLiourtas
3 years, 4 months ago
where does it say that?
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