goodbyeplanet 0 Posted February 8, 2011 OK i have a task to insert 400 users on active directory. I have been looking at the help file for some suggestions but it seems there isnt much on networking. May somebody help me or even give me some clues how i can use autoit to automate the process. my server is windows 2003. Share this post Link to post Share on other sites
Juvigy 49 Posted February 8, 2011 There is an active directory UDF that should do the trick. Use the search function in the forum to find it. Share this post Link to post Share on other sites
hannes08 39 Posted February 8, 2011 Hello goodbyeplanet, even if you don't want to use the ActiveDirectory UDF you could still use "dsadd.exe" to automate the setup of the 400 users. Regards, Hannes Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Share this post Link to post Share on other sites
water 2,387 Posted February 8, 2011 (edited) Please see my signature for the link to download the Active Directory UDF. Inserting 400 users is quite easy (pseudo code) #include <ad.au3> $iResult = _AD_Open() Loop $iResult = _AD_CreateUser(<OU where to create the user>, <Username = samaccountname>, <Common Name>) if @error <> 0 Then <Error handling> LoopEnd $iResult = _AD_Close() Edited February 8, 2011 by water My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites