Hey,
I am wondering what would be the best and easiest way to populate an active directory with this given:
I have an IEnumerable list of user objects with these properties: (all of them are strings)
Lastname
Username
Password
ChangePassNextLogin
PassExpires
Disabled
ParentOU
Groups
Roaming
No I want to do something like:
foreach(user in users)
{
add user to directory with properties
}
Can somebody give me some guidance thanks!