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.
 
Back
Top