Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to configure the self-service password reset for administrators feature in Office 365


View products that this article applies to.

Summary

This article describes the steps to configure the self-service password reset for administrators feature in Microsoft Office 365.

↑ Back to the top


More information

There are three requirements that administrators must have to take advantage of the self-service password reset feature:
  • A valid alternate email address which is not the same user account.
  • A valid mobile phone number that supports SMS text messaging.
  • The Office 365 company must be enabled with the feature. (By default, this feature is enabled)

How to set the alternate email address for administrators

To set the alternate email address for administrators, follow these steps:
  1. Sign in to the Microsoft Office 365 portal as a global administrator.
  2. Browse to Admin, and then click Users under Management.
  3. Click the user for whom you want to change the alternate email address.
  4. Click Settings.
  5. Under Assign administrative access to your company, under Email address, type an email address that the user will be able to access in case this user has to perform a self-service a password reset.
Or, you can use PowerShell to change the alternate email address.
Set-MsolUser -UserPrincipalName [UserPrincipalName] -AlternateEmailAddresses [EmailAddress]

For example,
Set-MsolUser -UserPrincipalName johnsmith@contoso.com -AlternateEmailAddresses "johnsmith@fabrikam.com"

How to set the mobile phone number for administrators


To set the mobile phone number for administrators, follow these steps:
  1. Sign in to the Microsoft Office 365 portal as a Global Administrator.
  2. Browse to Admin, and then click Users under Management.
  3. Click the user for whom you want to change the mobile phone number.
  4. Click Details.
  5. Under Additional properties, for Mobile phone, type the user's mobile phone number.
Or, you can use PowerShell to change the mobile phone number.
Set-MsolUser -UserPrincipal Name [UserPrincipalName] -MobilePhone [MobilePhoneNumber]
For example,
Set-MsolUser -UserPrincipal Name johnsmith@contoso.com -MobilePhone "425-555-0100"

How to determine and set the self-service password reset feature to be enabled or disabled

By default, the self-service password reset for administrators feature is enabled. This feature is a global company setting and cannot be configured per user.

To determine whether the feature is enabled or disabled for your company, follow these steps:
  1. Start Microsoft Online Services Module for Windows PowerShell. To do this, click Start, point to All Programs, point to Microsoft Online Services, right-click Microsoft Online Services Module for Windows PowerShell, and then select Run as administrator.
  2. Connect to Microsoft Online Services as a Global Administrator. Type the following command, and then press Enter:
    Connect-MsolService
  3. Run the following cmdlet to determine whether the feature is enabled or disabled:
    Get-MsolCompanyInformation | Fl SelfServePasswordResetEnabled
    • If SelfServePasswordResetEnabled : True is returned, the feature is enabled.
    • If SelfServePasswordResetEnabled : False is returned, the feature is disabled.
To enable or disable the feature, follow these steps:
  1. Start Microsoft Online Services Module for Windows PowerShell. To do this, click Start, point to All Programs, point to Microsoft Online Services, right-click Microsoft Online Services Module for Windows PowerShell, and then select Run as administrator.
  2. Connect to Microsoft Online Services as a Global Administrator. Type the following command, and then press Enter:

    Connect-MsolService
  3. To enable the feature, type the following command, and then press Enter:

    Set-MsolCompanySettings -SelfServePasswordResetEnabled $true

    To disable the feature, type the following command, and then press Enter:

    Set-MsolCompanySettings -SelfServePasswordResetEnabled $false

↑ Back to the top


Keywords: KB2646254, o365, vkbportal230, vkbportal237, vkbportal231

↑ Back to the top

Article Info
Article ID : 2646254
Revision : 3
Created on : 3/6/2012
Published on : 3/6/2012
Exists online : False
Views : 548