Memory Dump

H

Howard Martin

Hi Everyone,

I have set up a Win 2000 server to run IMail. As soon as I
go live I get a "blue" screen with the memory dump error.

If I just go on the Internet with the server without the
Mail turned on it works fine.

Desperate for any suggestions that might help me get this
solved today! Thank you!!!

Howard
 
R

Robin Caron

What you need to do it get a dump of the exception.

To setup the system to create a dump in these condition: (you may need to
start in safe mode to set this up):

- start System applet in control panel.
- go to the Advanced tab.
- Click Startup and Recovery.
- Select Small memory dump (64KB).
- Click OK and restart the computer.

Now when an unhandled exception (aka stop screen, aka blue screen, aka BSOD)
occurs you will get a dump. You can see what caused the dump using the
debugging tools for Windows. You can download the debugging tools at
http://www.microsoft.com/whdc/ddk/debugging/installx86.mspx (select the
Install 32 bit version link).

To look at the dump:
- Start Windbg (under the Debugging Tools for Windows),
- click File,
- Open Dump,
- navigate to your mini dump file and click Open. The dump will open.
- the command prompt will come up at the bottom. I'd recommend you set the
symbol path, force a symbol reload and then do analyze (using the following
command):

..sympath srv*http://msdl.microsoft.com/download/symbols
..reload
!analyze -v

Note that the .reload command may take a little while to complete. You know
it's down when the 0:kd prompt is back.

The output of the analyze command should give you a driver name. If you
unsure how to read the output post it here (look under Edit for save command
output) and someone will help you.

Good luck.
 

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

Similar Threads

Reading Windows 2003 Memory dump files 0
Memory dump 3
"beginning dump of physical memory" 1
Stop: C0000218 1
Physical Memory Dump 1
memory dumps 1
Memory dump of Hal.dll 1
Memory dump not created 4

Top