by David | Aug 26, 2022 | Information Technology, PowerShell, Resources
It’s time to Set Users’ MFA with a nice little function. This function is designed to gather information and set a user’s MFA with the method you want. It even allows you to reset and disable MFA. We are going to break this blog up a little...
by David | Nov 3, 2021 | Help Desk, Information Technology, PowerShell
How does one enable, disable, and reset a user’s MFA in Office 365? I was surprised by how much is required for enabling MFA. Enable MFA The first thing we do is Get the User from the Get-MsolUser. $user = Get-MsolUser -UserPrincipalName $UPN Next, we create a...