Extract the default MFA notification method configured for a directory’s users 123456Get-Msoluser -All| Select-Object @{N='SignInName';E={$_.SignInName}},@{N='AccountBlocked';E={($_.BlockCredential)}},@{N='MFA Status';E={if ($_.StrongAuthenticationRequirements.State){$_.StrongAuthenticationRequirements.State} else {"Disabled"}}},@{N='MFA-DefaultMethod';E={($_.StrongAuthenticationMethods | where isdefault -eq 'true').MethodType}}| Export-Csv -Path MFAStats.csv Comments: Please enable JavaScript to view the comments powered by Disqus.