Here is how we can create windows user from command prompt.
c:\net user /add [username] [password]
The above will creates the user account.
To add the user account to administrators group. Need to do like this below
c:\net localgroup administrators [username] /add
Hope this helps!