open notepad

Paste the following

@echo off
net user Username Password /add /comment:”Admin” /passwordchg:NO
wmic useraccount where “name=’Username'” set passwordexpires=FALSE
net localgroup “Administrators” Username /add
PAUSE

 

Replace Username with the username you want to use

Replace Password with the password you want to use