You could also do it using the dstools, example here
http://www.experts-exc
ther
Thanks
Mike
I need a script or utility that can reset a password for multiple users in one shot. I work for a school and allot of users will have forgotten their password coming back. I'd like to set one generic for everyone, and make them change it on first login. For some reason the native AD utility will not allow you to change more that one users password at a time. Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You could also do it using the dstools, example here
http://www.experts-exc
ther
Thanks
Mike
see it this works foe you http://www.edugeek.net/for
create a text file containing the users and passwords like so:
user1, genericpassword
user2, genericpassword
save it as user.txt
use the for command in the command line like so:
for /F "delims=, tokens=1,2" %A in (users.txt) do net user %A %B /domain
Note: You must be the network administrator to change passwords for domain accounts.
Hope this helps.
Business Accounts
Answer for Membership
by: rdsandersjrPosted on 2009-09-24 at 09:41:46ID: 25415260
A VBScript solution that reads user Distinguished Names (DN's) and passwords
et%20Passw ords%203.h tm
from a spreadsheet is linked here:
http://www.rlmueller.net/S
There is also a link to a program that creates the spreadsheet with the DN's
of all users. You just add a column for the password. Also delete any users
that should not have their passwords set (like administrator and guest for
example). The program enables each user account and expires the password so
it must be changed at the next logon. This allows you to specify different
passwords for different users if desired.