Network Connection Monitor

Associate
Joined
9 Sep 2007
Posts
102
Hi guys,

Does anyone know of a way or a program that can monitor how long a pc's network connection has been up?

I also need to be able to check it remotely some how, either by scheduled email or log export.

any help would be greatly appreciated.

EDIT: Or any way just to monitor how long a pc has been running for! Thx!
 
Last edited:
Could you telnet to a server/machine and use the command 'systeminfo'.

Obviously you could not do this with hunderds of machines but it will be able to tell you when the system was booted.
 
If you download SIW and run it then go to Software > Operating system there is, near the bottom, a boot time and running time entry. Boot time is in a clock format and running time is how many hours, minutes and seconds the PC has been running. :)
 
Hi guys,

Does anyone know of a way or a program that can monitor how long a pc's network connection has been up?

I also need to be able to check it remotely some how, either by scheduled email or log export.

You can parse the event log for network related error messages, a small VB.NET app will do it and can mail you with events. Plenty of examples on the www
 
Hi guys,

Does anyone know of a way or a program that can monitor how long a pc's network connection has been up?

I also need to be able to check it remotely some how, either by scheduled email or log export.

You can parse the event log for network related error messages, a small VB.NET app will do it and can mail you with events. Plenty of examples on the www

thanks for your answer but i've re-phrased my original question a little, im just trying to find out how many hours each pc has been on per month...
 
Parse the Event log for start/stop events for the EventLog service, or if they are left on permanently then look for the uptime event that occurs at mid day
 
Parse the Event log for start/stop events for the EventLog service, or if they are left on permanently then look for the uptime event that occurs at mid day

so you saying i could use an event log reporting utility on the pc's to email me when certain services start or stop? i.e. ones that only start/stop at system boot or shutdown?
 
i thought of another possible alternative, i wrote a couple of scripts:

one to add the current date and time to a txt file and another to add the system uptime to a txt... but i cant figure out a way to get them to run on system shutdown! any ideas any one?
 
Back
Top Bottom