System Log
download
http://www.bleepingcomputer.com/download/minitoolbox/
Check the following checkboxes: -List last 10 Event Viewer log -List Installed Programs -List Users, Partitions and Memory size.
Get system information
http://www.piriform.com/speccy
Clear Windows Log
Paste it to a bat file, run it as administrator! source - http://winaero.com/blog/how-to-clear-the-windows-event-log-from-the-command-line/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo Event Logs have been cleared!
goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
echo You must run this script as an Administrator!
echo.
:theEnd
origin - http://www.pipiscrew.com/?p=2511 app-minitoolbox