From 47aa19e743abc297e49df740d7cf6411637ba6f0 Mon Sep 17 00:00:00 2001 From: "Matthew M." <30242289+mcm223@users.noreply.github.com> Date: Fri, 10 Oct 2025 15:50:40 -0700 Subject: [PATCH] Clarify scope of AllowedToUseSspr parameter Updates an example in Update-MgPolicyAuthorizationPolicy.md to clarify scope of the parameter. --- .../Update-MgPolicyAuthorizationPolicy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Identity.SignIns/Update-MgPolicyAuthorizationPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Identity.SignIns/Update-MgPolicyAuthorizationPolicy.md index 78e59243534e..df495e24566f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Identity.SignIns/Update-MgPolicyAuthorizationPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Identity.SignIns/Update-MgPolicyAuthorizationPolicy.md @@ -110,20 +110,20 @@ Update-MgPolicyAuthorizationPolicy -BodyParameter $params ``` This example will disable default user role's permission to create applications -### Example 4: Enable default user role to use Self-Serve Password Reset feature +### Example 4: Disable administrator ability to use Self-Serve Password Reset feature ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ - allowedToUseSSPR = $true + allowedToUseSSPR = $false } Update-MgPolicyAuthorizationPolicy -BodyParameter $params ``` -This example will enable default user role to use self-serve password reset feature +This example will disable administrator ability to use self-serve password reset feature ### Example 5: Disable user consent to apps for default user role