Create User (Visual Basic)
This code can be found in
Chapter 31 of Active Directory, 3rd Edition
Purchase XP Cookbook or Networking Recipes for only $25 plus shipping! While supplies last.
Find out how to download all of the Visual Basic code from this site.
' From the book "Active Directory, Third Edition"
' ISBN: 0-596-10173-2
Dim objParent As New DirectoryEntry("LDAP://ou=sales,dc=mycorp,dc=com", _
"administrator@mycorp.com",_
"MyPassword", _
AuthenticationTypes.Secure)
Dim objChild As DirectoryEntry = objParent.Children.Add("cn=jdoe", "user")
objChild.Properties("sAMAccountName").Add("jdoe”)
objChild.CommitChanges()
objChild.NativeObject.AccountDisabled = False
objChild.CommitChanges()
Console.WriteLine("Added user")
|
This code has been viewed 4433 times.
|
New from the creators of TechTasks.com:
StatSheet.com
|