Jump to content

Creating so many Accounts for domain users! How ?


hamed

Recommended Posts

I manage a large school computers lab, and i want to crate a domain account for evry student.

can i show a dialog to all clinets while students useing the PCs, so they fill the form (name, username, password... etc) and then the server create accounts for there ?

if yes; How?

if no; What is the best easy way to create account for about 300 user ?

Link to comment
Share on other sites


You can use a VB Script..

Dim Container
Dim ContainerName
Dim User
Dim NewUser
ContainerName = InputBox("Enter the Domain Name:")
Newuser = InputBox("Enter the new user name:")
Set Container = GetObject("WinNT://" & ContainerName)
Set User = Container.Create("User", NewUser)
User.SetInfo

Link

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...