unable to reset password for domain user in Entra

Dan D 20 Reputation points
2025-05-08T18:37:25.8+00:00

I have tried over the past two weeks to reset a user password, and my user tried just today, as did I, as we were on a Teams call. The error states, "We're sorry, we're not able to reset this user's password right now. This may be due to temporary issues on our end. Please wait a few minutes and try again."

I've waited many minutes and am now seeking assistance. Thank you

Microsoft Security | Microsoft Entra | Microsoft Entra ID
{count} votes

Answer accepted by question author
  1. Raja Pothuraju 43,500 Reputation points Microsoft External Staff Moderator
    2025-05-23T20:20:43.8833333+00:00

    Hello @Dan D,

    Thank you for connecting with me offline.

    As we observed, the affected users in your tenant still have the on-premises sync status enabled, which is the primary reason you're unable to reset their passwords from the Azure portal. Since your on-premises Active Directory was decommissioned some time ago, we needed to convert these synced users into cloud-only users.

    To achieve this, we followed the steps below using Microsoft Graph Explorer to disable directory synchronization:

    • Open Microsoft Graph Explorer.
    • Sign in using a Global Administrator account.
    • Use the following PATCH request (replace {organization-id} with your actual Tenant ID):
    PATCH https://graph.microsoft.com/beta/organization/{organization-id} (Replace org id with Tenant ID)
    
    • Navigate to the Modify Permissions tab and grant Organization.ReadWrite.All permission (consent on behalf of the organization).
    • In the Request Body, enter the following JSON:
    {
      "onPremisesSyncEnabled": false
    }
    
    • Click Run Query.

    Note: It may take 4–5 minutes for the changes to reflect in the Azure portal.

    User's image

    After completing these steps, the synced users were successfully converted to cloud-only users, and you are now able to reset their passwords via the Azure portal.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

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.