Self service portal for Azure MFA reset

Reddy, Vasudev Gundam 1 Reputation point
2020-08-17T08:03:08.543+00:00

Hi Team,

We have a large number of people who are using Azure, we are enforcing users to use MFA for that we are getting lot of requests to for asking MFA reset because of they changed mobile or different reasons, so we are seeing daily 10 tickets on these.

Is there any way to create self service portal for users can do them self by receiving OTP to work email or any type of authentication?

can you please help me how can we achieve this?

Thanks
Dev

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,689 questions
{count} votes

2 answers

Sort by: Most helpful
  1. JamesTran-MSFT 36,461 Reputation points Microsoft Employee
    2020-08-18T21:37:26.927+00:00

    @Reddy, Vasudev Gundam
    Thank you for the details in your response! I tested the "require re-register MFA" option within the Portal and found that it does the same thing as this script.

    Connect-MsolService -AzureEnvironment AzureCloud
    $User = Get-MSolUser -UserPrincipalName "user@mathieu.company .onmicrosoft.com"
    $User.StrongAuthenticationMethods
    Reset-MsolStrongAuthenticationMethodByUpn -UserPrincipalName "user@mathieu.company .onmicrosoft.com"

    18561-resetstrongauth.jpg

    Please let me know if you have any issues or other questions.
    Thank you for your time!

    Reset-MsolStrongAuthenticationMethodByUpn

    3 people found this answer helpful.

  2. Alexey Klimenko 6 Reputation points
    2020-08-18T06:07:45.38+00:00