Need to know at what dattime computer boots up

  • Thread starter Thread starter MoiMeme
  • Start date Start date
M

MoiMeme

Hi,

I need to know thedate-time stamp of every boot of my sons PC for a week

Any way ?

That's important : I think he's abandoning his studies, but refuses to
discuss ! No a clean way, but I need to know so I can help him out

TIA
 
MoiMeme said:
Hi,

I need to know thedate-time stamp of every boot of my sons PC for a week

Any way ?

That's important : I think he's abandoning his studies, but refuses to
discuss ! No a clean way, but I need to know so I can help him out

TIA

Use the Task Scheduler (via the Control Panel) to invoke the
following batch file at boot time:
@echo off
set LogDir=c:\Windows\Logs
if not exist %LogDir% md %LogDir%
echo Booting on %date% at %time% >> %LogDir%\Boot.log
 
MoiMeme said:
Hi,

I need to know thedate-time stamp of every boot of my sons PC for a
week
Any way ?

That's important : I think he's abandoning his studies, but refuses to
discuss ! No a clean way, but I need to know so I can help him out

Move the computer to the family room.
 
If you want to see the past boot times please look in the
Event Viewer, System tab as there will be entries related to the system
startup.

Click start, run, enter eventvwr.msc then "system" folder.
 

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