Nov 11 2021
04:13 PM
- last edited on
Jan 14 2022
03:23 PM
by
TechCommunityAP
Nov 11 2021
04:13 PM
- last edited on
Jan 14 2022
03:23 PM
by
TechCommunityAP
Is there a UI or powershell method to find users that have MFA enable / enforce. Also if they are capable?
Nov 11 2021 10:11 PM - edited Nov 11 2021 10:22 PM
@hoyty76 The sign-ins report provides you with information about the usage of managed applications and user sign-in activities, which includes information about multi-factor authentication (MFA) usage. you can find details in the below URL Sign-in event details for Azure AD Multi-Factor Authentication - Azure Active Directory | Microsoft ...
Also you can use the powershell command
The following command will display generate a list of ONLY the users who have MFA enabled
Get-MsolUser -All | where {$_.StrongAuthenticationMethods.Count -eq 1} | Select-Object -Property UserPrincipalName | Sort-Object userprincipalname
List all users that have DONT HAVE MFA enabled only The following command will display generate a list of users who DONT have MFA enabled
Get-MsolUser -All | where {$_.StrongAuthenticationMethods.Count -eq 0} | Select-Object -Property UserPrincipalName | Sort-Object userprincipalname
Nov 15 2021 07:33 AM
Solution@Chandrasekhar_Arya I found this great script [PowerShell] Export the MFA Status of Office 365 users (lazyadmin.nl) that gives all the information I needed. Thanks for you suggestions.
Nov 15 2021 07:33 AM
Solution@Chandrasekhar_Arya I found this great script [PowerShell] Export the MFA Status of Office 365 users (lazyadmin.nl) that gives all the information I needed. Thanks for you suggestions.