How to restrict login hours allowed?
Dealing with operations related different user account through the command console; the command “net user” is used. It is applicable for adding user account, modifying it and showing all other relevant information regarding the account.
Type account name or ADD (quotes is forbidden). You need to insert the password here.
You will get the users list on it through “net user” solitary. You can also get an account deleted using delete parameter.
So you are well acquainted to the command now. I am providing you the process of adding parameter for logon limit in accordance with time.
Look at the command below:
net user "user account" /time:M-F,14:00-16:00
You can insert your required account information instead of “user account”. You can go with the command 14-17 times a day Monday-Friday by accessing your account. It will also provide some other facilities to your children.
You need to know that conventional value should be sharp. Hours like 13:35 or 16:18 is not accepted.
Different time breaking is also available for special days.
Here goes some command:
net user softpedia /time:W,09am-4pm;T,3pm-4pm;F-Sa,8:00-15:00
Look the short form of the weekday is M; T; W; Th; F; Sa; Su.
Now it is up to you regarding the schedule of your machine..
Have fun!