1) Command to Find Available users on a window box: net user 2) Command to add a new user account with a password: net user /add Lenny{username} mango{pass} 3) Command to add an user account to administrator group: net localgroup administrator Lenny /add 4) To give the full administrator right to the user,use following command: net share concfg*C:\/grant:useraccountname,full 5) The following example adds a user account for a user whose full name is Jay Jamison and whose user account name is jayj, with logon rights from 8 A.M. to 5 P.M., Monday through Friday (no spaces in time designations), a mandatory password (Cyk4^g3B), and the user's full name: net user jayj Cyk4^g3B /add /passwordreq:yes /times:monday-friday,8am-5pm /fullname:"Jay Jamison" 6) The following example sets the logon time (8 A.M. to 5 P.M.) for Lenny by using 24-hour notation: ...