ASP.NEt, creating new user on Windows 2000 Domain
I am trying to set up a new user via ASP.NET on my Windows 2000 Domain controller and I continue to receive the error "Network Path not found" I am using LDAP to connect to my Domain Controller. I set up the user and commit and then try and set the password using this code:
objUser.Invoke("SetPassword", "newpass")
I have tried also adding this before I commit again and it doesn't work either. I verified the the account is created on the Domain controller, it just won't allow me to set an initial password.
objUser.Properties("accountdisabled").Value = False
Please help. This has become a three day problem!
Thanks :)
|