cobra11 Posted October 22, 2010 Share Posted October 22, 2010 (edited) ... Edited December 6, 2017 by cobra11 Link to comment Share on other sites More sharing options...
cobra11 Posted October 22, 2010 Author Share Posted October 22, 2010 (edited) ... Edited December 6, 2017 by cobra11 Link to comment Share on other sites More sharing options...
Developers Jos Posted October 22, 2010 Developers Share Posted October 22, 2010 Windows account? You mean the User Administrator? Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
cobra11 Posted October 23, 2010 Author Share Posted October 23, 2010 (edited) ... Edited December 6, 2017 by cobra11 Link to comment Share on other sites More sharing options...
Developers Jos Posted October 23, 2010 Developers Share Posted October 23, 2010 Here you have something to play with: expandcollapse popupInit 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) ;*********************** ; Rename User $colAccounts = ObjGet("WinNT://" & $strComputer & "") $objUser = $colAccounts.Create("user", $UserName) $OldUser = "Fred" $NewUser = "Fredrenamed" $oUser = ObjGet("WinNT://" & @ComputerName & "/" & $OldUser & ",user") $oComputer = ObjGet("WinNT://" & @ComputerName) $oNewUser = $oComputer.MoveHere($oUser.ADsPath, $NewUser) ; Delete User $colAccounts = ObjGet("WinNT://" & $strComputer & "") $objUser = $colAccounts.Delete("user", $NewUser) Func MyErrFunc() $HexNumber=hex($oMyError.number,8) Msgbox(0,"","We intercepted a COM Error !" & @CRLF & _ "Number is: " & $HexNumber & @CRLF & _ "Linenbr is: " & $oMyError.scriptline & @CRLF & _ "Description is: " & $oMyError.description & @CRLF & _ "Windescription is: " & $oMyError.windescription ) SetError(1) ; something to check for when this function returns Endfunc You can pull the startup username from the registry.' So, What is you goal here? Why rename the userid? Jos gadelat 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
cobra11 Posted October 23, 2010 Author Share Posted October 23, 2010 (edited) ... Edited December 6, 2017 by cobra11 Link to comment Share on other sites More sharing options...
Developers Jos Posted October 23, 2010 Developers Share Posted October 23, 2010 (edited) I would rename the account' s name that is existing, and the function "Rename User" doesn't work.Not sure what you expect but you could imagine that a post like this worthless.oh..and the rename function works fine when applied properly. Edited October 23, 2010 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
cobra11 Posted October 23, 2010 Author Share Posted October 23, 2010 (edited) ... Edited December 6, 2017 by cobra11 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now