Lockout Check Box on users screen

Brian Lancaster
Tera Sage

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.

11 REPLIES 11

Brian Lancaster
Tera Sage

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;


}


Thanks for sharing the update.