Use below Powershell command to Identify users who have registered for MFA. This set of commands excludes disabled users since these accounts cannot authenticate against Azure AD.
Get-MsolUser -All | Where-Object {$.StrongAuthenticationMethods -ne $null -and $.BlockCredential -eq $False} | Select-Object -Property UserPrincipalName