Adding Extra Users in Windows Home Version

I find the easiest way to add extra users to Windows Home version is to use the cmdline (elevated):
net user username * /add
net localgroup Administrators username /add
wmic path Win32_UserAccount where Name='username' set PasswordExpires=False
wmic path Win32_UserAccount where Name='username' set FullName='Full Name'