You can either share the dump completely or not at all. It cannot be shared partly.
What’s in it depends on what type of dump you have: A minidump (could be several megabytes) or a full memory dump (usually gigabytes). A full memory dump is just that: All memory of everything that’s running on your PC, which could be full of private data like credentials. A minidump (technically “Small memory dump”) contains only the most essential information (bugcheck data, CPU registers, error structures if any) and will usually not contain private data.
That all being said, using WinDbg, you can convert a full dump to a minidump (quoting this answer on Super User):
A dump can be converted with WinDbg:
- Open the full dump
.dump c:\debug\dumps\small.dmp
You can automate this task by using cdb instead of windbg and pass commands via the -c "<command>" command line switch, e.g.:
cdb -c ".dump c:\debug\dumps\small.dmp ; q" -z c:\debug\dumps\big.dmp
The q ensures that cdb quits after re-dumping.
Only instead I’d recommend using WinDbg preview from the Microsoft Store. It does not come with cdb.
With a 0x124 bugcheck (WHEA_UNCORRECTABLE_ERROR) it is most likely caused by failing hardware. Since you were pushing your PC to the limits, maybe the power supply was insufficient.
If you want quick help, you can share the results of running !analyze -v in WinDbg (it can take a while).
The bugcheck parameters indicate that a Machine Check Architecture error occurred. These errors are raised by the CPU when stuff goes wrong.
The parameters further hold the contents of the MCA_STATUS register that contains information about the error: 0xbc800800060c0859. According to the preliminary manual for AMD Zen 3 CPUs (the closest thing available), this means the following:
- “The error was the result of attempting to consume poisoned data.”
- The error was reported because reporting was on for “A parity error was detected in an LDQ entry by any access” (LDQ = “Load Queue”)
- The error occurred while trying to fetch instructions from L1 cache
This means your CPU is malfunctioning. It could be damaged or it could be receiving insufficient power.
You can try stressing your system with Prime95 and/or Furmark to determine if it can handle full load.
You should use Memtest86 to determine whether all RAM is okay.
Since your system is new, it should be possible to replace components on warranty.