monitoring

  • Thread starter Thread starter marc
  • Start date Start date
M

marc

How do you go about monitoring when a user logs on and off?

Well management wants to monitor when employees log on to their computers in
the morning. They want a sense of when an employee is there at work.
 
marc said:
How do you go about monitoring when a user logs on and off?

Well management wants to monitor when employees log on to their computers in
the morning. They want a sense of when an employee is there at work.

You could insert this single line into your logon script:

echo %date% %time:~0,5% %ComputerName% %UserName% >>
\\YourServer\SomeShare\SomeFolder\logon.log

This works fine for up to around 20 users. Above this number it
becomes unreliable because of the increased probability of two
users attempting to access logon.log at the same time, causing
sharing conflicts.

The log off event is much harder to monitor. How should Windows
know whether an employee is in a meeting, on the phone, has gone
home without logging off or has fallen asleep on the job?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top