G Guest Sep 30, 2004 #1 looking for a good fast way to add mutiple users (50+) to a windows xp workstation. Thanks for the help if you reply...
looking for a good fast way to add mutiple users (50+) to a windows xp workstation. Thanks for the help if you reply...
P Pegasus \(MVP\) Sep 30, 2004 #2 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... Click to expand... 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.
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... Click to expand... 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.