Search found 3 matches

by kgocken
Tue May 22, 2007 11:42 pm
Forum: VBScript
Topic: Exchange New User from file
Replies: 4
Views: 5517

Exchange New User from file

I've posted the original script below, it creates an exchange mailbox, and creates a folder on a network server for the user. To pull the user names from the list I added Set oFS = CreateObject("Scripting.FileSystemObject")Set oTS = oFS.OpenTextFile("c:users.txt")Do Until oTS.AtE...
by kgocken
Tue May 22, 2007 6:40 am
Forum: VBScript
Topic: Exchange New User from file
Replies: 4
Views: 5517

Exchange New User from file

The users.txt includes the user name (firstname.lastname) on each line. The script currently takes the user name from the Inputbox to define the strUser and a function get the UserDN (distinguished name) for the creation of the mailbox. The problem seems to be with the Do Until oTS.atendofstream as ...
by kgocken
Tue May 22, 2007 2:43 am
Forum: VBScript
Topic: Exchange New User from file
Replies: 4
Views: 5517

Exchange New User from file

Hello, I've gotten the "Exchange New User Demo" script working that Jhicks had posted in the script vault. What I'm trying to do now is pull users from a list, instead of using the input boxes. I add this to the script Set oTS = oFS.OpenTextFile("c:users.txt")Do Until oTS.atendof...