Just a question.. Typically how long is the machine on line before it blue screens? If the machine has been running for a while, I doubt it is a hardware related issue. Almost all blue screens (except on initial boot) are software related... i.e. memory leaks within applications.<br>
If the server creates a crash dump file called memory.dmp in the c:\winnt directory, try using dumexam to port it to a text file. Then, in that text file search on the Stop exception. If it is a driver.. many times you will find a driver listed that caused the problem. Now, it is not always easy to determine what the driver does, so you will need to do some digging around. If anywhere in the dumpfile you run across the line something to the effect "No more physical memory" or "out of physical memory".. something along those lines... you have a memory leak. What this means is... some application... driver...etc. is using memory, and then not releasing all of it when the app terminates.<br>
<br>
There are downloads that supposedly clean memory that you can run to release previously allocated physical memory , but I have never tried any of them. A reboot will clear it out.<br>
<br>
If this happens every few weeks or so, and the problem looks like it is memory related, I would suggest scheduled re-boots over the weekend to clean up memory problems... <br>
<br>