Okay the update:
Finally got a good script to add users to Active Directory. Works amazingly well. Even I did not botch it. I am still working out getting it to auto-insert the list of users though. I don\'t have much experiance playing with array, dim and redim commands. Hell, not even sure those are the commands I am looking for.
Start VBS:
Set ou = GetObject(\"LDAP://OU=Test,DC=tech-hints,DC=com\")
Set usr = ou.Create(\"user\", \"CN=Twinkie Cream\")
\'--- Mandatory Attributes----
usr.Put \"samAccountName\", \"twinkie\"
\'---- Optional Attributes, you can optionally skip these----
usr.Put \"sn\", \"Cream\"
usr.Put \"givenName\", \"Twinkie\"
usr.Put \"userPrincipalName\", \"
[email protected]\"
usr.Put \"displayName\", \"Twinkie Cream\"
usr.SetInfo
\'--Now that the user is created, reset the user\'s password and
\'--enable its account
usr.SetPassword \"techhints\"
usr.AccountDisabled = False
usr.Put \"PasswordExpired\", CLng(1)
usr.SetInfo
save as adduser.vbs and your done.