Link to home
Start Free TrialLog in
Avatar of djdetenator
djdetenatorFlag for United States of America

asked on

I have a windows SBS 2003 server. It rebooted last night without reason.

This is the error i got in the event viewer. Any help would be appreciated.

The computer has rebooted from a bugcheck.  The bugcheck was: 0x00000077 (0xc0000001, 0xc0000001, 0x00000000, 0x02b13000). A dump was saved in: C:\WINDOWS\MEMORY.DMP.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Avatar of Pete Long
Pete Long
Flag of United Kingdom of Great Britain and Northern Ireland image

Hello djdetenator,

Install the Debugging tools

http://www.microsoft.com/whdc/devtools/debugging/default.mspx
Symbol packages can be go if needed from here http://www.microsoft.com/whdc/devtools/debugging/symbolpkg.mspx

When the Crash occurs

1. Copy the memory.dmp file to the servers desktop
2. Start > Programs > Debugging tools for Windows > WinDbg
3. File Open Crash Dump> Navigate to the dump you saved on the desktop > Open > Yes
4. Your first Clue to the problem will be

Probably caused by : filename. Extension (filename)

5. Google that filename and see what it is.
6. For a detailed analysis type the following commands

 .symfix {enter}
 .reload {enter}
 !Analyze -v {enter}

7. Read the report!

Regards,

PeteLong
ASKER CERTIFIED SOLUTION
Avatar of chilids
chilids

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of djdetenator

ASKER

Ran chkdsk and it found sereral erooros. eveything seems to be fine for now. I'll keep my fingers crossed :0)