Create a local Windows user account from the command line.
Open CMD Prompt…
To do click Start, search for “cmd” and press Enter.
To add the user, in the command prompt window, type:
net user /add [*username] [*password]
Press Enter.
[*username] = your username
[*password] = your password
A correct line would look like: net user /add username password
Give this user administrator rights, type:
net localgroup administrators [username] /add
Press Enter.
Done!
You should now have a new Admin Account on your PC!