sunduni Posted September 4, 2007 Posted September 4, 2007 (edited) I'm trying to run this script to add a user in windows vista but for some reasons it wont work. can somebody help!!! #include <Process.au3> #RequireAdmin If Not IsAdmin() Then _RunDOS("net user johnb parkland /add /Activate") _RunDOS("net localgroup Administrators johnb /add") RunAsSet("johnb", @Computername, "parkland") Run('"' & @AutoItExe & '"' & ' "' & @ScriptFullPath & '"', @WorkingDir) Exit EndIf MsgBox(0, 'Message', 'Now running with admin rights.') Edited September 4, 2007 by sunduni
Bert Posted September 4, 2007 Posted September 4, 2007 You may need to do the runasset first, then add the user. If you don't have rights, then it won't work. The Vollatran project My blog: http://www.vollysinterestingshit.com/
Developers Jos Posted September 4, 2007 Developers Posted September 4, 2007 (edited) aren't these 2 lines in contradiction ?: #RequireAdmin If Not IsAdmin() Then The first ensures that the script always runs with Admin right as far as I understand ....right ? That would mean that the If is always false. Edited September 4, 2007 by JdeB 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.
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