I am trying to use the below script to make a user in AD:
username = "username"
Firstname = "FirstName"
lastname = "lastname"
description = "description"
Set objOU = GetObject("LDAP://OU=TheOU,dc=MyDC,dc=com")
Set objUser = objOU.Create("User", "cn="&username)
'initial account creation...