free Windows XP app to enforce user time restrictions

0

Does anyone know of any free Windows XP apps that will automatically log a user off if a set amount of logged in time is up?

Screen savers don't work if the user is still actively using the account, or if there is an application running full screen.

javamonkey79

Posted 2010-12-31T19:50:15.980

Reputation: 909

Question was closed 2015-01-06T13:34:15.963

Answers

1

Get Windows Steadystate.

But hurry because they're closing the download midnight tonight.

digitxp

Posted 2010-12-31T19:50:15.980

Reputation: 13 502

Perfect! I got it, got it setup and is exactly what I need. I also saved it in my Google docs :P Thanks a bunch! – javamonkey79 – 2010-12-31T22:46:24.347

1

You can restrict logon times without extra software via the command line:

e.g

net user john /times:su-sa,8am-5pm

I don't recall if this automatically logs the user off as well, but that can be achieved with a small script if that's not the case.

John T

Posted 2010-12-31T19:50:15.980

Reputation: 149 037

What kind of a simple script? – javamonkey79 – 2010-12-31T20:45:42.093

the %username% variable holds the currently logged in user. If %username% is equal to .... then shutdown -l. – John T – 2010-12-31T21:31:43.410