What is the best approach to achieve the goal?

Posted by: Pdfprep Category: MS-100 Tags: , ,

Your company recently purchased a Microsoft 365 subscription.

You enable Microsoft Azure Multi-Factor Authentication (Ml A) 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 MFA Server blade.
D . From the Azure Active Directory admin center, use the Risky sign-ins blade.

Answer: B

Explanation:

You can use the Get-MsolUser cmdlet to generate a report that lists all the users who completed the Azure MFA registration process.

The full command would look like this:

Get-MsolUser -All | Where-Object {$_.StrongAuthenticationMethods.Count -eq 0} | Select-Object -Property UserPrincipalName

Reference: https://docs.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-reporting

Leave a Reply

Your email address will not be published.