Disable Multi Factor Authentication

Eng Soon Cheah
Sep 17, 2021

Before you start, run this command in Power Shell

Connect-MsolService

Disable the MFA for one user

Get-MsolUser -UserPrincipalName "xxxx@mvponduty.onmicrosoft.com" | Set-MsolUser -StrongAuthenticationRequirements @()

Learn more about PowerShell

--

--