AD userAccountControl and FIM Portal employeeStatus
-
Thursday, December 13, 2012 10:37 PM
Hi,
Just going back to a previous discussion.
We have a number of users in AD, with various userAccountControl values/combinations. We would like to set the FIM Portal 'employeeStatus' attribute to either 'enabled' or 'disabled' based on the userAccountControl setting in AD. we have reviewed the following article, but it appears to work in the opposite direction: http://social.technet.microsoft.com/wiki/contents/articles/how-to-enable-or-disable-accounts-in-active-directory-domain-service-using-fim.aspx
Does anyone know how to configure the Portal 'employeeStatus' attribute based on the AD 'userAccountControl' value?
Thanks,
Sk
All Replies
-
Friday, December 14, 2012 7:19 AM
It should be something like that
CustomExpression(IIF(Eq(BitAnd(2,userAccountControl ),2),”Disabled”,”Enabled”))
Tracy | Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Proposed As Answer by gdtilghman Friday, December 14, 2012 2:51 PM
- Marked As Answer by S.Kwan Monday, December 17, 2012 12:17 AM
-
Friday, December 14, 2012 2:51 PM
Not sure if it matters, but mine looks a bit different than that.
- Proposed As Answer by gdtilghman Friday, December 14, 2012 2:51 PM
-
Monday, December 17, 2012 12:17 AMthank you !

