Reply to Message

Two Missing lines at end of user creation loop.
This script will work pretty much out of the box if you like although there is a pretty major omission at the end of the "User Creation" loop.

Ensure you insert the following two lines at the end of the script

---
oRecordset.MoveNext
Loop
---

This will ensure that ADO moves to the next line in the csv file, otherwise the script will continually loop on the first entry in the file because it will create it once and then attempt to continually create the first account because it is not being told to move onto the next record.
Posted by MickKerr
18th Jan 2011