Bulk Create Users
From nswccWiki
Introduction
User creation automation can be done in many ways. There are dedicated user management utilities, simple command scripts and more powerful VBscripts.
Command Scripts
You can create new users in bulk on a local PC or in a domain using the command ling tool NET. You can also add them to groups
The two commands to use are NET USER and NET GROUP.
Info on these commands can be found using:
NET HELP USER
NET HELP GROUP
Automation
You can use a concatenate column in Excel to set up a large number of accounts to be created.
e.g
Column A = Full Name
Column B = User Names
Column C = Password
Column D = ="NET USER " & B2 & " " & C2 & " /ADD /FULLNAME:""" & A2 & """"