Skip to content

Instantly share code, notes, and snippets.

@codenathan
Created July 22, 2021 11:33
Show Gist options
  • Save codenathan/211068a9433765857e90b7af261457be to your computer and use it in GitHub Desktop.
Save codenathan/211068a9433765857e90b7af261457be to your computer and use it in GitHub Desktop.
Create an Admin User Account Using CMD Prompt
# Create The User
net user /add [*username] [password]
#e.g. net user /add codenathan
# Add User To Administrator Group
net localgroup administrators [username] /add
#e.g. localgroup administrators codenathan /add
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment