powershell MSGraph是否等同于MSOnline的强身份验证要求?

axr492tv  于 2022-11-10  发布在  Shell
关注(0)|答案(1)|浏览(130)

我有以下Windows PowerShell代码,它在用户创建时强制执行MFA:

$st = New-Object -TypeName Microsoft.Online.Administration.StrongAuthenticationRequirement
        $st.RelyingParty = "*"
        $st.State = "Enforced"
        $sta = @($st)
        Set-MsolUser -UserPrincipalName $upn -StrongAuthenticationRequirements $sta | Out-Null

既然MSOnline应该被弃用,而且不是PowerShell核心的更新,那么在MSGraph(或其他模块)中是否有与此对应的代码来执行相同的操作?

相关问题