Use WMI to query the system log for the shutdown and restart event. There could be other parts of WMI thats has this info too. Use the WMI Code Creator to generate your code.
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=8572
- Class: Win32_NTLogEvent
- Logfile: System
You can look over the event log with event viewer to figure out what events you want to record. Set the script to run on startup and it will write them to the file for you, recording the events. Personally, I think you should just setup a real monitoring system that will record these events to a central log. Look at syslog.
UPDATE: There is a setting that hold the last boot time...
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems = objWMIService.ExecQuery( _
"SELECT * FROM Win32_OperatingSystem",,48)
For Each objItem in colItems
Wscript.Echo "-----------------------------------"
Wscript.Echo "Win32_OperatingSystem instance"
Wscript.Echo "-----------------------------------"
Wscript.Echo "LastBootUpTime: " & objItem.LastBootUpTime
Next