I just did up directions for my team.
Download Windows Debugging Tool
Below file was obtained from:
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=8279
Double-click the above file to install.
Follow prompts, but unselect all components EXCEPT the Debugging Tools for Windows under the Common Utilities section.
It will download around 65.2mbs and complete the install.
Create Shortcut
Go to C:\Program Files\Debugging Tools for Windows (x86) and create a shortcut to the WinDbg.exe file on your desktop or your QuickLaunch
Using the Microsoft Symbol Server with WinDbg
To use the Symbol Server Web site from within WinDbg, follow these steps:
1. Create a folder in the root of C:\ called Symbols
2. Start the Windows Debugger (WinDbg.exe).
3. On the File menu, click Symbol File Path.
4. In the Symbol path box, type the following command:
Srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
The debug symbols are downloaded to this location as they need them (can get large over time)
Note You can point to any local path or share that your computer can reach; it does not have to be a location on the computer's hard disk
Load a Minidump
To open and look at a dump to find the possible cause:
1 Launch WinDbg.exe
2 Hit CTRL+D and go to the dmp file you want to open
3 Let it run and when it is complete you see something like the below with it indicating the probable cause (ely6032.sys in this case).
You dont see this picture, but it will basically tell you what it thinks is causing the problem. If it is heat, as I suspect in your case it could be anything in here.
• Search google for file if you are not familiar with it.
4 Hit SHIFT+F5 to stop the dump and to open another.