If you can write vbs scripts (pretty much even if you cant ) visit here for how to add users and also users to groups etc http://www.15seconds.com/issue/011005.htm just execute the vbs when is convenient... example add user '-------------------- start vbs --------------------' AddUser "newuser","mydomain" AddUser "newuser2","mydomain" Sub AddUser(strUser,strDomain) Dim Computer Dim User Set Computer = Getobject("WinNT://" & strDomain) Set User = computer.create("User",strUser) User.setinfo Set User = nothing Set computer = nothing End sub -------------------- end vbs --------------------'