Jump to content

Creating so many Accounts for domain users! How ?


Recommended Posts

Posted

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 ?


Posted

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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