how can i track pc usage?

Soldato
Joined
13 Jan 2004
Posts
12,773
Location
Leicestershire
i.e. when windows/the pc is on?

at the moment the pc is password protected but is there a simple report i can run once a week to show me what time it was signed on and for how long?


windows xp home and ie8 if it helps.
 
You can write 2x .bat files to write to a log file for log on and log off, username and date/time, just use GPO to call the .bat?

Example:

Echo off
echo Username\%username%; Date\%date%; Time\%time%; >>c:\Activity.txt

Copy the Bold text to a .Bat file, call it Logon.bat, then run GPEDIT.msc and under User Config/Windows Settings/Scripts, you add the logon.bat to the Startup and also to the logoff...

Each time a user logs in, the bat file will run silently and add the details to the Activity.txt file on the root of C:\.

i'll try the event viewer first, then this. cheers peeps. :)
 
You can write a .bat file to write to a log file for log on and log off, username and date/time, just use GPO to call the .bat?

Example:

Echo off
echo Username\%username%; Date\%date%; Time\%time%; >>c:\Activity.txt

Copy the Bold text to a .Bat file, call it Logon.bat, then run GPEDIT.msc and under User Config/Windows Settings/Scripts, you add the logon.bat to the Startup and also to the logoff...

Each time a user logs in, the bat file will run silently and add the details to the Activity.txt file on the root of C:\.

epedit i don't have. will autoexec.bat be ok instead?
 
Back
Top Bottom