Is there a way to project manually created AD accounts, in a specific OU, into the Metaverse?
Thank you,
Mike
Technology Tips and News
Is there a way to project manually created AD accounts, in a specific OU, into the Metaverse?
Thank you,
Mike
If you want to project all users from AD, who are not in FIM, then it is a couple click in AD MA.
follow this.
Double Click AD MA
Click Join and Projection Tab
Click New projection rule.
If you want only certain users to be projected, let;s say only users in OU="USERS", then you need to write a piece of code like this. (Visual Basic, Csharp is similar)
Public Function ShouldProjectToMV(ByVal csentry As CSEntry, _
ByRef MVObjectType As String) As Boolean Implements _
IMASynchronization.ShouldProjectToMV
Select Case csentry.dn.toString.Value.ToLower.Contains("users") (Not sure on the exact syntax of this line)
MVObjectType = "person"
End Function
Please test the code.