User Account Creation
Results 1 to 10 of 10

Thread: User Account Creation

  1. #1
    Join Date
    Aug 1999
    Location
    Elmont, NY, USA
    Posts
    276

    User Account Creation

    i have to create thousands of user accounts. i remember someone talking about a program on the nt resource kit to do that. can someone refresh my memory? i also have to disable other accounts. anyone have any ideas? thanx.
    Jake

  2. #2
    Join Date
    Mar 2000
    Location
    Cambridge, UK
    Posts
    3,435
    What do you exactly want to do? You can do lots of stuff using BATch files

    ------------------
    Tech Guy
    Please visit my forum

  3. #3
    Join Date
    Aug 1999
    Location
    Elmont, NY, USA
    Posts
    276
    well, i administer the network for a educational institution and every semester we get a new batch of students. we also have to disable accounts from the previous semester unless the students continue in the next semester. i remember that people used to talk about a program on the resource tool kit that helps you easily create accounts as well as folders for them. hope this helps.
    Jake

  4. #4
    Join Date
    May 2000
    Location
    Wallops Island VA
    Posts
    3
    You're looking for addusers.. the info is here http://support.microsoft.com/support...-US&SD=gn&FR=0

    You can download it here
    ftp://ftp.microsoft.com/bussys/winnt...kit/nt40/i386/

    More info on the reskit
    http://support.microsoft.com/support...-US&SD=gn&FR=0


    Later

    Joe_W

    [This message has been edited by Joe_W (edited 05-26-2000).]

    [This message has been edited by Joe_W (edited 05-26-2000).]

    [This message has been edited by Joe_W (edited 05-26-2000).]

    [This message has been edited by Joe_W (edited 05-26-2000).]

  5. #5
    Join Date
    Jan 2000
    Location
    Ottawa, Ontario, Canada
    Posts
    220
    Of course, ADDUSERS.EXE won't create home folders or share them out or set security or...

    You may have to get into writing a script (BATch file). Shouldn't be too hard. At a command prompt, type NET HELP USER and you should get a lot of useful info on how to do user account manipulation from a script. If you need specific questions answered, post back.

  6. #6
    Join Date
    Mar 2000
    Location
    Cambridge, UK
    Posts
    3,435
    OK here's the file I used to add users long time ago...

    ADDSTAFF.BAT
    @ECHO OFF
    :START
    NET USER %1 * /add /fullname:%2 /comment:"TELUS Staff" /homedir:\\HOME\%1$ /profilepath:\\HOME\SET$\%1 /script:STAFF.BAT
    MD F:\%1
    MD F:\%1\TEMP
    cacls F:\%1 /T /G "Domain Admins":F "Account Operators":F "Supervisors":F %1:F < \\HOME\ACCTS$\YES.TXT
    net share %1$=F:\%1
    net group Staff %1 /add
    net group Internet %1 /add
    ECHO To add the user to a department group use ADDGROUP.BAT file located in \\HOME\ACCTS$.
    Goto START


    Well I edited it a little bit otherwise you can modify it to your needs and use it.

    ------------------
    Tech Guy
    Please visit my forum

  7. #7
    Join Date
    Mar 2000
    Location
    Cambridge, UK
    Posts
    3,435
    Jut to let you know. This batch file doesnt use ADDUSER.EXE, also for this file you need to have the YES.TXT file that is basically a text document with twon lines:
    Y
    Enter

    well enter is the enter key



    ------------------
    Tech Guy
    Please visit my forum

  8. #8
    Join Date
    Jan 2000
    Location
    Montreal, Quebec, Canada
    Posts
    238
    Is this the app you're referring to?

    http://www.microsoft.com/education/p.../nt_wizard.asp

  9. #9
    Join Date
    Aug 1999
    Location
    Elmont, NY, USA
    Posts
    276
    thanks guys, i really appreciate it. i'll try these out.
    Jake

  10. #10
    Join Date
    Mar 2000
    Location
    England
    Posts
    26
    I see that this will need to be run from the server!!!!!!

    you could use the rmtshare.exe that comes with the Resource Kit and alter it so that you can run it from any pc!!


    ------------------
    My Name is NEO.....
    Welcome to the REAL WORLD (it's what you make I.T.)

    p.s.
    My Name is Neil.
    My Name is NEO.....
    Welcome to the REAL WORLD (it's what you make I.T.)

    p.s.
    My Name is Neil.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •