brianlan25
Kilo Patron

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;


}