These are a few helpful command to add users
FYI, you need to run these in admin for it to work
Add a normal user
net user USERNAMEHERE PASSWORDHERE/ADD /FULLNAME:"FULLNAMEHERE"
Add a normal user w/ password change restrictions
To set restrictions change PASSWORDCHG to yes or no
net user username password /ADD /PASSWORDCHG:Yes
...
Batch sign-in script. This script is limited though, because you have to program the username/password in the actual program.
Refer to my other blog post to see a better user system.
...