How To Add Users in Windows 10 Home from the command prompt - arcdev/engram404 GitHub Wiki
originally posted 2016-10-09 at https://engram404.net/how-to-add-users-in-windows-10-home-from-the-command-prompt/
I got really comfortable with creating user accounts in Windows 7 and then came Windows 10 Home.
There's a set of dialogs you can go through, but it's pretty miserable.
Instead, I came across a StackOverflow post on how to do it from the command prompt.
NET USER username "password" /ADD
NET LOCALGROUP "group" "username" /ADD
Here's the actual MSDN reference.