Saturday, August 31, 2013

How to Create Admin Account

open note pad and type this
@echo off
@echo Create An Administrator account
set /p q=username
set /p w=password
set /p e=the username you just created
net user %q% %w% /add
@echo now making it an administator
net localgroup administrators %e% /add

And save it as a .bat file
it will just create a program that makes administrator accounts at your command

0 comments:

Post a Comment