creating accounts

  • Thread starter Thread starter Michael Cancellieri
  • Start date Start date
M

Michael Cancellieri

Hi all,
Is there a tool that can create about 4000 or more users in a N.T 4.0 master
domain to test migration to A.D

Thank You
Michael Cancellieri
(e-mail address removed)
 
Is there a tool that can create about 4000 or more users in a N.T 4.0 master
domain to test migration to A.D

For the beginning:

for /L %a in (1001,1,5000) do net user testuser%a %a%a /domain /add

Will create testuser1001 to testuser5001 with corresponding passwords
10011001 to 50005000.

Additional parameters may be added if needed.

Ciao, Walter
 
Back
Top