KatoXY 0 Posted May 12, 2011 Hi,I want write script which create local user with password and add it to administrators group. I found in forum this:; Init objects ;$oMyError = ObjEvent("AutoIt.Error","MyErrFunc") ; Install a custom error handler $UserName = 'Fred' $Password = 'Wilma123' $strComputer = @ComputerName ;*********************** ;Create UserID $colAccounts = ObjGet("WinNT://" & $strComputer & "") $objUser = $colAccounts.Create("user", $UserName) $objUser.SetPassword ($Password) $objUser.Put ("Fullname", "Test User") $objUser.Put ("Description", "Test User description") $objUser.Put ("PasswordExpired", 1) ;expire the password $objUser.SetInfo ;*********************** ;Add User to group $objGroup = ObjGet("WinNT://" & $strComputer & "/Administrators,group") $objGroup.Add($objUser.ADsPath)It's created 4 years ago and it's working on Windows XP, but it doesn't working in Windows 7 (I have 64bits version).Where is problem? Share this post Link to post Share on other sites
water 2,420 Posted May 12, 2011 Where is problem?Don't know You must provide more information!What error message do you get? Which line number returns the error?Please see function "ObjEvent" in the help file to insert a COM error handler (starting from line "; COM Error Handler example") in your script which will deliver detailed error messages. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2021-04-14 - Version 1.5.3.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2021-04-13 - Version 1.6.4.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (NEW 2021-04-13 - Version 1.4.0.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
KatoXY 0 Posted May 12, 2011 I added rest of the script from with ObjEvent then I got Access Denied.When I compiled this script and run as administrator then program has executed the desired operations. Share this post Link to post Share on other sites