You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Pre-populate user authentication contact information for Azure Active Directory self-service password reset (SSPR)
20
20
21
-
To use Azure Active Directory (Azure AD) self-service password reset (SSPR), authentication contact information for a user must be present. Some organizations have users register their authentication data themselves. Other organizations prefer to synchronize from authentication data that already exists in Active Directory Domain Services (AD DS). This synchronized data is made available to Azure AD and SSPR without requiring user interaction. When users need to change or reset their password, they can do so even if they haven't previously registered their contact information.
21
+
To use Azure Active Directory (Azure AD) self-service password reset (SSPR), authentication information for a user must be present. Most organizations have users register their authentication data themselves while collecting information for MFA. Some organizations prefer to bootstrap this process through synchronization of authentication data that already exists in Active Directory Domain Services (AD DS). This synchronized data is made available to Azure AD and SSPR without requiring user interaction. When users need to change or reset their password, they can do so even if they haven't previously registered their contact information.
22
22
23
23
You can pre-populate authentication contact information if you meet the following requirements:
24
24
@@ -80,13 +80,13 @@ The following fields can be set through PowerShell:
80
80
* Can only be set if you're not synchronizing with an on-premises directory.
81
81
82
82
> [!IMPORTANT]
83
-
> There's a known lack of parity in command features between PowerShell v1 and PowerShell v2. The [Microsoft Graph REST API (beta) for authentication methods](/graph/api/resources/authenticationmethods-overview) is the current engineering focus to provide modern interaction.
83
+
> Azure AD PowerShell is planned for deprecation. You can start using [Microsoft Graph PowerShell](/powershell/microsoftgraph/overview) to interact with Azure AD as you would in Azure AD PowerShell, or use the [Microsoft Graph REST API for managing authentication methods](/graph/api/resources/authenticationmethods-overview).
84
84
85
-
### Use PowerShell version 1
85
+
### Use Azure AD PowerShell version 1
86
86
87
87
To get started, [download and install the Azure AD PowerShell module](/previous-versions/azure/jj151815(v=azure.100)#bkmk_installmodule). After it's installed, use the following steps to configure each field.
88
88
89
-
#### Set the authentication data with PowerShell version 1
89
+
#### Set the authentication data with Azure AD PowerShell version 1
To get started, [download and install the Azure AD version 2 PowerShell module](/powershell/module/azuread/).
126
126
127
127
To quickly install from recent versions of PowerShell that support `Install-Module`, run the following commands. The first line checks to see if the module is already installed:
128
128
129
129
```PowerShell
130
-
Get-Module AzureADPreview
131
-
Install-Module AzureADPreview
130
+
Get-Module AzureAD
131
+
Install-Module AzureAD
132
132
Connect-AzureAD
133
133
```
134
134
135
135
After the module is installed, use the following steps to configure each field.
136
136
137
-
#### Set the authentication data with PowerShell version 2
137
+
#### Set the authentication data with Azure AD PowerShell version 2
To get started, [download and install the Microsoft Graph PowerShell module](/powershell/microsoftgraph/overview).
164
+
165
+
To quickly install from recent versions of PowerShell that support `Install-Module`, run the following commands. The first line checks to see if the module is already installed:
166
+
167
+
```PowerShell
168
+
Get-Module Microsoft.Graph
169
+
Install-Module Microsoft.Graph
170
+
Select-MgProfile -Name "beta"
171
+
Connect-MgGraph -Scopes "User.ReadWrite.All"
172
+
```
173
+
174
+
After the module is installed, use the following steps to configure each field.
175
+
176
+
#### Set the authentication data with Microsoft Graph PowerShell
0 commit comments