Hi @Vill Sivoravong ,
Thank you for raising question to Microsoft Q&A.
According to this issue, may I know if you could try to turn on the options in Self-service password reset (SSPR) in Entra Admin Center as Global Administrator role?
Please provide a screenshot so I could better understand your issue to provide accurate troubleshooting steps. Here are some insights I could think of right now.
- Change the browser or clear the cache of current browser you are using to access to Entra Admin Center by following this article: https://support.microsoft.com/en-us/windows/clear-browsing-history-e81687d2-8ff0-4573-bb6e-23597cfd8819
- Use PowerShell and Microsoft Graph to try to enable SSPR to see what the error message could be.
For PowerShell and connect to Microsoft Graph via this article: https://learn.microsoft.com/en-us/microsoft-365/enterprise/connect-to-microsoft-365-powershell?view=o365-worldwide
then run these commands:
Connect-MgGraph -Scopes "Policy.ReadWrite.Authorization"
Import-Module Microsoft.Graph.Identity.SignIns
$params = @{allowedToUseSSPR = $true}
Update-MgPolicyAuthorizationPolicy -BodyParameter $params
Reference for this: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.identity.signins/update-mgpolicyauthorizationpolicy?view=graph-powershell-1.0#example-4-enable-default-user-role-to-use-self-serve-password-reset-feature
Please try this and let me know if you have any updates.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.