How can I notify a user, when they log in, that their password will expire soon?

How can I notify a user, when they log in, that their password will expire soon?

This is a sample profile Login Script that will tell the user when their password expires, each time they log into webNetwork / Unified Workspace. 

Once the user reaches the limit where their password will expire in 4 days, the Change Password link is also executed with a warning message. 

If the user still hasn't changed their password with 1 day to go before it expires, they are more strongly warned to change their password, with the Change Password link being executed. 

  * Note:  This will not work with AD LDS or Directory Sync installs of webNetwork / Unified Workspace



// *** Check for when password expires *** 
if daysUntilPasswordExpiration > 4 then 
message( text = "@@usergivenname@@ your password will expire on @@PasswordExpirationTime@@") 
end 

// *** Inform user password will expire in 4 days *** 
if (daysUntilPasswordExpiration > 1 and daysUntilPasswordExpiration < 4) then 
executeLink("cn=Change Password,ou=Authentication,ou=Account Mgmt,o=STONEWARE") 
message( type=warning, text = "@@usergivenname@@ your password will expire in less than 4 days. Please change your Password soon. Expiration = @@PasswordExpirationTime@@.") 
end 

// *** Inform user passwored expires in 1 day *** 
if daysUntilPasswordExpiration <= 1 then executeLink("cn=Change Password,ou=Authentication,ou=Account Mgmt,o=STONEWARE") 
message( type=alert, text = "@@usergivenname@@ your password will expire in 1 day or less. PLEASE CHANGE YOUR PASSWORD NOW! before it gets locked out. Thank you. Expiration = @@PasswordExpirationTime@@", icon="/images/redx.gif" ) 
end 
 


    Can't find the KB

    Unable to find the KB to address your issue ?  

      • Recent Articles

      • Lenovo Unified Workspace End-of-Life Questions and Answers

        Will the shutdown of LUW servers and access to downloads affect my server licensing? No, the shutdown of the customer servers and access to the product and licensing downloads will not affect your server licensing. This license is downloaded and ...
      • How do I determine my Unified Workspace license expiration date?

        The best method for determining the licensing information including the expiration date of your Unified Workspace license: Login to your 8090 management console on each server This may take remoting into each LUW server and relay, opening a browser, ...
      • Lenovo Unified Workspace 7.0.2.13 Released

        Highlights of Unified Workspace 7.0.2.13 Before you install: Please view the installation notes here. 7.0.2.13 requires a 7.0 license file. Below is a list of enhancements and fixes released in Unified Workspace 7.0.2.13 Fixed external storage ...
      • LanSchool Documentation Guides

        LanSchool Classic Teacher Console The LanSchool Teacher Console is the interface teachers will use to manage their classroom and students. It contains all the tools necessary for a teacher to effectively interact with students and create a ...
      • Lenovo Unified Workspace 7.0.1.41 Released

        Highlights of Unified Workspace 7.0.1.41 Before you install: Please view the installation notes here. 7.0.1.41 requires a 7.0 license file. Below is a list of enhancements and fixes for Unified Workspace 7.0.1.41 Updated Log4j Updated Java Updated ...
      • Related Articles

      • User not able to change password in Unified Workspace

        How to enable Change Password debug, when having trouble with users not being able to change, or reset, their password in Unified Workspace. The Change Password debug needs to be enabled on the server that connects to your directory.  You may know ...
      • User password expiration / lockouts in Microsoft Active Directory

        How can I show accounts that are locked out in AD ? http://technet.microsoft.com/en-us/library/cc738772(WS.10).aspx Can I dump password expiration for users in AD ? AdFind.exe to dump the password expiration. Stoneware download / Utilities has this ...
      • Allow Help Desk to change user password

        Issue Customer would like to limit Help Desk users to only be able to change/reset user password via the webAdmin Dashboard. Solution This can be done by assigning specific users in the system the User Group Admin role, as well as assigning them the ...
      • How to disable password saving - Safari

        Having multiple methods for saving a password in the browser can cause confusion for the user. To disable password saving in Safari, launch Safari and perform the following steps. Click the Safari in the top menu bar. Choose Preferences. Choose ...
      • How to disable password saving - Internet Explorer

        Having multiple methods for saving a password in the browser can cause confusion for the user.   To disable password saving in Internet Explorer, launch Internet Explorer and perform the following steps. Click the blue Settings menu icon in the upper ...