How to disable per-user MFA settings using Microsoft Graph PowerShell?

106 views Asked by At

I'm rewriting all my PowerShell script from MSOnline to Microsoft Graph PowerShell.

One of my existing script below is about to disable specific user's MFA settings.

Set-MsolUser -UserPrincipalName $UserPrincipalName -StrongAuthenticationRequirements @()

I can't find a way to implement in Microsoft Graph PowerShell. I checked Update-MgUser page. There is no relevant arguments related to this.

0

There are 0 answers