Share via

How to recover Accidentally deleted Microsoft Athenticator user

Yayasan Bina Integrasi Edukasi 0 Reputation points
2026-02-19T12:21:14.28+00:00

How to recover Accidentally deleted Microsoft Athenticator user

Microsoft Security | Microsoft Authenticator
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Q&A Assist
    2026-02-19T12:21:26.2533333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    To recover an accidentally deleted user in Microsoft Entra (which is related to Microsoft Authenticator), you can follow these steps:

    1. Check the 30-Day Recovery Window: After a user is deleted, their account remains in a suspended state for 30 days. During this time, you can restore the user account along with all associated data.
    2. Using Microsoft Entra PowerShell:
      • Connect to Entra with the necessary permissions:
             Connect-Entra -Scopes 'User.Read.All'
        
      • Find the deleted user using the following command:
             Get-EntraDeletedUser -Filter "displayName eq 'User Display Name'"
        
      • Restore the user with their ID:
             Restore-EntraDeletedDirectoryObject -Id 'User-ID'
        
    3. Using the Microsoft 365 Admin Center:
      • Go to Users > Deleted users in the Microsoft 365 admin center.
      • Select the user you want to restore and click on Restore user. Follow the prompts to set their password and complete the restoration.
    4. Important Notes:
      • Ensure that you have enough licenses available to assign to the restored user.
      • If the deletion occurred more than 30 days ago, the user cannot be restored, and you will need to recreate the account.

    By following these steps, you can successfully recover a deleted user in Microsoft Authenticator through the associated Microsoft Entra services.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.