Can somebody help me with this little script?
here's the deal...
From the text file "users.txt" I must create at the root of Active Directory a OU for every user of the text file. I must add every user in it's own OU. The script must work on any domain name and must also be authenticated with the following user:
User :Administrator
Password: password
I must also create a new group that I will add into the OU of the first user. Using FSO, I must add every user in the group.
Thanks
Re: Help a Visual Basic noob...
Welcome to VBForums! :)
First off change the thread title to something more descriptive so that when people are browsing the forum they know what they are looking at.
Read this post on getting your questions answered http://www.vbforums.com/showthread.php?t=182707
Second off, what have you done so far?
Generally people aren't going to write all your code for you.
You are more likely to get help with specific problems.
Re: Can somebody help me with this little script?
Well so far I don't really have anything else than...
Set objDomain = GetObject("LDAP://dc=nom du domaine,dc=com")
Set objOU = objDomain.Create("organizationalUnit", "ou=nom de l'OU")objOU.SetInfo
...anybody can help me with a few tips?