Is there a way to create a user in Windows XP via Batch Script and even assign it administrator/limited user value?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Suppose the username is rased and password is pAsS

net user rased pAsS /add 
net localgroup administrators rased /add

here user is added under administrators group.

link|improve this answer
feedback

Yes, you can create a user by running net user USERNAME PASSWORD /add (omit the PASSWORD if you do not wish to have a password for this account, use * for PASSWORD to require the user to enter a password at run time). This creates a "limited user"; if you wish to make the new user an administrator, run net localgroup Administrators USERNAME /add after creating the user.

link|improve this answer
+1 Rased gets the answer tag because you left out /add to net localgroup Administrators USERNAME – Mechaflash Sep 21 '11 at 13:58
This is now fixed – Jonathan Callen Sep 21 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.