Skip to content

Commit 2946dca

Browse files
authored
Update password-writeback-error-code-sspr-009.md
1 parent ed9f0b6 commit 2946dca

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

support/entra/entra-id/user-prov-sync/password-writeback-error-code-sspr-009.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Microsoft Entra Administrators can't reset their own password from cloud
33
description: "Troubleshoot error SSPR_009: You can't reset your own password because password reset isn't turned on for your organization."
4-
ms.date: 02/11/2022
4+
ms.date: 06/05/2025
55
ms.reviewer: jarrettr, nualex, v-leedennis
66
ms.service: entra-id
7-
ms.custom: sap:User Sign-in or password Problems, has-azure-ad-ps-ref, azure-ad-ref-level-one-done
7+
ms.custom: sap:User Sign-in or password Problems, no-azure-ad-ps-ref, azure-ad-ref-level-one-done
88
keywords:
99
#Customer intent: As a user with a Microsoft Entra Administrator role, I want to avoid SSPR_009 errors so that I can reset my own password from the cloud.
1010
---
@@ -33,10 +33,16 @@ The old SSPR-A implementation is used when a Microsoft Entra account has an admi
3333

3434
## Solution
3535

36-
Enable SSPR-A on the tenant by running the [Set-MsolCompanySettings](/powershell/module/msonline/set-msolcompanysettings) PowerShell cmdlet, as follows:
36+
Enable SSPR-A on the tenant by running the [Update-MgPolicyAuthorizationPolicy](/powershell/module/microsoft.graph.identity.signins/update-mgpolicyauthorizationpolicy) Microsoft Graph PowerShell cmdlet, as follows:
3737

3838
```powershell
39-
Set-MsolCompanySettings -SelfServePasswordResetEnabled $true
40-
```
39+
Import-Module Microsoft.Graph.Identity.SignIns
40+
41+
$params = @{
42+
allowedToUseSSPR = $true
43+
}
4144
45+
Update-MgPolicyAuthorizationPolicy -BodyParameter $params
46+
```
47+
For more information, see [Get started with the Microsoft Graph PowerShell SDK](/powershell/microsoftgraph/get-started)
4248
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

0 commit comments

Comments
 (0)