|
Answer» Hello,
I would like to know how to create an admin account, all I got so far is : net USER admin /ADD and it only creates a normal account.
Thanks
AlmnI don't believe you can create an Admin account from a user account. Privileges, you know. You ALSO need the "net localgroup" command. Using your example of a username CALLED "admin", you can use: Code: [Select]net user admin /add net localgroup Administrators admin /addGX1 man has a point ... you need to be an Administrator to be ABLE to use "net user /add" and "net localgroup /add". But if you are already logged in as an Administrator, then those commands will create a new user, and then make that user a local Administrator.
|