Lockout Check Box on users screen

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2014 10:36 AM
Under user administration there is Locked out check box. How does that get set? We have had user that the first time they try to login they cannot because the check box is checked. We use single sign on so I don't think it is an invalid password issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2016 04:16 AM
Hello Everyone. Sorry this post got lost in a sea of other posts. What I did was add some extra code to the transform script as follows.
//Reactivate LDAP-reenalbed users during transform based on 'userAccountControl' attribute
if(source.u_useraccountcontrol == '512' || source.u_useraccountcontrol == '544'){
target.active=true;
target.locked_out=false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2016 07:50 AM
Thanks for sharing the update.