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.
 
I dont know of any software but its easy enough to do in event viewer

Start --> Run --> "eventvwr" --> Go to the security pane, it tells you Logon attempts. Don't know if it's any help but thats the best I can think of at the moment

- Pea0n
 
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:\.
 
Last edited:
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?
 
Failing that, you can put the .bat file in C:\Documents and Settings\All Users\Start Menu\Programs\Startup

The only down side is it will only run when the user logs in and not when they log out.
 
Google: gpedit.msc on xp home

There are loads of results on how to add this XP Pro feature to XP Home, but i've never tried it myself.
 
Back
Top Bottom