how to create 900 user folder

  • Thread starter Thread starter hal9000
  • Start date Start date
H

hal9000

is there any way to create 900 user folders, under 30
group folders all of which has strict permissions
such as one cannot access other's folders.
 
I'm not sure if this is the best way, but it will work,
if you make a profile location it will create a file that
only that user can access, if you point the local
directory to this same location it will have the effect
you are looking for. With variables like %username% you
can make a template and copy it for each user, and that
might help you a little.

jake
 
aren't there any free software that can produce 900
different user for 30 groups? or do you do this manually.
 
aren't there any free software that can produce 900
different user for 30 groups? or do you do this manually.

Sorry, but you changed your question. First you want to create 900
home directories now you want to create 900 users.
Please tell us what you have to do.

Take a look at addusers.exe (resource kit)

Another way (Quick and dirty):
for /L %a in (1,1,900) do net user User%a defpass%a /domain /add

Ciao, Walter
 
thank you for the reply.
yes, i'd like to create 900 users and folders of which
when one loggs in, he will be staying in his home folder.
i will take a look for addusers.
and what language is this?
for /L %a in (1,1,900) do net user User%a
defpass% /domain /add
 
Back
Top