Jump to content

add users in windows vista


sunduni
 Share

Recommended Posts

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 by sunduni
Link to comment
Share on other sites

  • Developers

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 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.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...