Hey
Donna, nice to see you over here at SF
I'm not entirely sure, but for as far as I know it should be possible yeah. Although I must say that I am not sure if you can open PowerShell via CMD in WinRE.. But if you can, then you can use this method.
Just make the OP open CMD, and then type the following command:
start powershell
Then, in PowerShell, make him run this command (as explained in
Shawn's tut linked by
Derek):
get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message | out-file Desktop\CHKDSKResults.txt
This should create a .txt file called
CHKDSKResults.txt on the OP his desktop.
You can then make the OP copy/paste it to a USB stick via
this tutorial so that he can upload it via another machine.
If the OP doesn't have another machine, or if you can't access the desktop, you can open the .txt file within CMD by typing the following command:
cd c:\Documents and Settings\<USERNAME>\Desktop
Then type:
more CHKDSKResults.txt
This should open the first ten or something lines of the CHKDSK log in CMD, you can display more lines by hitting enter. Depending on the size of the log it's not an effective method, but it's better than nothing
Hope that this helps
Nommy