【发布时间】:2019-01-09 13:21:40
【问题描述】:
有没有办法收集 MFA 服务器(本地)的 MFA 状态?例如,注册用户、未注册用户。
我从 Microsoft 找到了以下 cmdlet,但这仅适用于 Azure MFA 云用户,不适用于 MFA 服务器。
https://docs.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-reporting
Get-MsolUser -All | where {$_.StrongAuthenticationMethods -ne $null} | Select-Object -Property UserPrincipalName
你知道注册用户是否有AD属性吗? StrongAuthenticationMethods 属性也仅限于云。
【问题讨论】:
标签: azure azure-active-directory multi-factor-authentication