adding mutiple users

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

looking for a good fast way to add mutiple users (50+) to a windows xp
workstation. Thanks for the help if you reply...
 
Lloyds44 said:
looking for a good fast way to add mutiple users (50+) to a windows xp
workstation. Thanks for the help if you reply...

If you have a list of users inside a file of this form

JLloyds password1
PBrown password2

then this command will create the accounts:

for /F "tokens=1,2" %a in (c:\Users.txt) do net user %a %b /add

Type the command "net help user" at the Command Prompt to
see what options are available.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top