How to Change the Password Reset Reminder Settings in StoreFront

How to Change the Password Reset Reminder Settings in StoreFront

book

Article ID: CTX139871

calendar_today

Updated On:

Description

This article provides information on how to change the Password Reset reminder settings in StoreFront.


Instructions

Note: Ensure to backup the web.config file before you make any changes to the file.

Complete the following steps to change the password reset reminder settings:

  1. Open C:\inetpub\wwwroot\Citrix\Authentication\web.config file and search for the following explicit configuration:
    <explicitBL authenticator="defaultDelegatedAuthenticator" requireAccountSIDs="true"
      hideDomainField="true" allowUserPasswordChange="Never" showPasswordExpiryWarning="Windows"
      passwordExpiryWarningPeriod="10" allowZeroLengthPassword="false">
      <domainSelection default="animaniacs">
        <clear />
        <add domain="animaniacs" />
      </domainSelection>
    </explicitBL>
  1. To disable the check, change the highlighted entry:
    <explicitBL authenticator="defaultDelegatedAuthenticator" requireAccountSIDs="true"
      hideDomainField="true" allowUserPasswordChange="Never" showPasswordExpiryWarning="Never"
      passwordExpiryWarningPeriod="10" allowZeroLengthPassword="false">
      <domainSelection default="animaniacs">
        <clear />
        <add domain="animaniacs" />
      </domainSelection>
    </explicitBL>
  1. To remind the end-user to change their password 10 days before it expires, change the highlighted entry:
    <explicitBL authenticator="defaultDelegatedAuthenticator" requireAccountSIDs="true"
      hideDomainField="true" allowUserPasswordChange="Always" showPasswordExpiryWarning="Custom"
      passwordExpiryWarningPeriod="10" allowZeroLengthPassword="false">
	<domainSelection default="animaniacs">
	   <clear />
	      <add domain="animaniacs" />
           </domainSelection>
     </explicitBL>

Issue/Introduction

How to Change the Password Reset Reminder Settings in StoreFront.