Options
- 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;
}