Folks, Thanks for your help in this matter. Saves a lot time haveing to search for these info.
Minh -----Original Message----- From: Andrew S. Baker [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 10, 2002 6:02 PM To: NT 2000 Discussions Cc: [EMAIL PROTECTED] Subject: RE: Scripting of account creation? You can use ADDUSERS or a series of NET USER commands. http://www.ultratech-llc.com/KB/?File=UserMgr.TXT ============================================================== ASB - http://www.ultratech-llc.com/KB/?File=~MoreInfo.TXT ============================================================== "Any fool can tell the truth, it takes sense to lie well." >-----Original Message----- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Evans Chris - >cevans >Sent: Thursday, January 10, 2002 9:48 AM >To: NT 2000 Discussions >Subject: RE: Scripting of account creation? > > >I mean a user account > >-----Original Message----- >From: Evans Chris - cevans [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 10, 2002 8:17 AM >To: NT 2000 Discussions >Subject: RE: Scripting of account creation? > > >Here is a VB script to add a Computer account. > >Dim Container >Dim ContainerName >Dim User >Dim NewUser >ContainerName = "Container_Name_To_Manage" >NewUser = "User_Account_To_Create" >Set Container = GetObject("WinNT://" & ContainerName) >Set User = Container.Create("User", NewUser) >User.SetInfo > > >-----Original Message----- >From: Meidling, Keith [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 10, 2002 8:16 AM >To: NT 2000 Discussions >Subject: RE: Scripting of account creation? > > >If you want to use PERL, try the following modules, Win32::NetAdmin, >Win32::AdminMisc, and Win32API::Net > >Great modules, and they are very powerful. > >Keith > >-----Original Message----- >From: La, Minh [mailto:[EMAIL PROTECTED]] >Sent: Monday, January 07, 2002 2:34 PM >To: NT 2000 Discussions >Subject: Scripting of account creation? > > >Are there any sample VBS or Perl script or App that >demostrat how to create >a set of accounts? This could be used in a class room >environment where >users are created and deleted in a mass basis. > >TIA > >Minh > ------ You are subscribed as [EMAIL PROTECTED] Archives: http://www.swynk.com/sitesearch/search.asp To unsubscribe send a blank email to [EMAIL PROTECTED] ------ You are subscribed as [email protected] Archives: http://www.swynk.com/sitesearch/search.asp To unsubscribe send a blank email to [EMAIL PROTECTED]
