Simple create user (VBScript)
This code can be found in
Chapter 4 of Managing Enterprise Active Directory Services
Purchase XP Cookbook or Networking Recipes for only $25 plus shipping! While supplies last.
Find out how to download all of the VBScript code from this site.
'# ------------------------------------------------------------------
'# From the book "Managing Enterprise Active Directory Services"
'# ISBN: 0-672-32125-4
'# ------------------------------------------------------------------
Dim User
Dim Container
Set Container = GetObject("LDAP://cn=Users,dc=xyz,dc=com")
Set User = Container.Create ("user","CN=jdoe")
User.Put "sAMaccountName","jdoe"
User.SetInfo
|
This code has been viewed 1211 times.
|
New from the creators of TechTasks.com:
StatSheet.com
|