unable to reset password for domain user in Entra

Dan D 0 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 Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
24,687 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Raja Pothuraju 22,640 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.

    0 comments No comments

Your answer

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