Share via

Hello i need help analyzing event viewer to check what's causing my PC to reboot/crash

Anonymous
2024-02-05T23:58:03+00:00

This is a newly built pc, but I have been experiencing random reboots during gaming. Game would suddenly freeze, then reboot. Also experiencing random BSOD when pc is awaken from sleep.. I want to check which hardware is causing the problem since windows is freshly installed. My guess would probably be the RAM (using a 3600mhz 8gb x 2, which I saw is not supported by my B450 mobo --- turned off XMP just to make sure it's not causing the crash, but it happened again even on stock speed) or SSD. Any help is appreciated. TY. Below is the event viewer under system tab:

  • System
    • Provider
    [ Name] Microsoft-Windows-WER-SystemErrorReporting [ Guid] {ABCE23E7-DE45-4366-8631-84FA6C525952} [ EventSourceName] BugCheck
    • EventID 1001
    [ Qualifiers] 16384 Version 0 Level 2 Task 0 Opcode 0 Keywords 0x80000000000000
    • TimeCreated
    [ SystemTime] 2024-02-05T23:31:12.2527524Z EventRecordID 2855 Correlation
    • Execution
    [ ProcessID] 0 [ ThreadID] 0 Channel System Computer *** Security
  • EventData param1 0x0000001e (0xffffffffc0000096, 0xffffb584b4f7c076, 0x0000000000000000, 0x0000000000000000) param2 C:\WINDOWS\MEMORY.DMP param3 74b42b60-657c-434d-b21e-274c4bb469fa
Windows for home | Windows 10 | Performance and system failures

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

13 answers

Sort by: Most helpful
  1. Lester Bernard Reyes 80,695 Reputation points Independent Advisor
    2024-02-06T06:41:44+00:00

    Hi Raymond, thank you for patiently waiting, as per checking and analyzing the DMP files, there is an error CI.dll, this is a DLL that is part of the system32, and might be corrupted, in this case, we will re-register the DLL file by following the steps below:

    Open Powershell with Admin or CMD with Admin (Press Windows key + X then click Windows Powershell(Admin))

    Copy, paste, and enter the command below:

    for %1 in (ci.dll) do regsvr32 /s %1

    Once done, restart the PC and check.

    If none will work from the above solution, I suggest doing an in-place upgrade wherein it will upgrade the device to the latest version and repair all issues without deleting any files.

    Note: before doing this make sure to create a restore point: https://support.microsoft.com/en-hk/help/402753...

    1. go to this link: https://www.microsoft.com/en-us/software-downlo...
    2. Select Download Now, and select Run. You need to be an administrator to run this tool.
    3. On the License terms page, if you accept the license terms, select Accept.
    4. On the What do you want to do? page, select Upgrade this PC now, and then select Next.
    5. After downloading and installing, it should fix the issue.

    Reference: https://www.microsoft.com/en-us/software-downlo...

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-02-06T06:05:00+00:00

    Hi thanks for the reply. I have tried some of the steps you have suggested above, but some of them are too technical for my experience as I'm just an average user. I had run the memory diagnostic test, and found no errors. Also I'm pretty sure temperature is not a problem as I have them monitored with my cpu cooler and Afterburner screen display. I have uploaded the minidump in my one drive, in hopes to figure out my issue. Any leads are appreciated.

    Thank you.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-02-06T05:59:31+00:00

    Hello Bernard,

    I have uploaded the dump files on this link:

    minidump

    I tried opening the file using WinDBg, but this is far too technical for my understanding as I'm just a casual user who only happens to know how to put pc parts together.

    Any help or lead is greatly appreciated.

    Was this answer helpful?

    0 comments No comments
  4. Lester Bernard Reyes 80,695 Reputation points Independent Advisor
    2024-02-06T02:34:39+00:00

    Hi Raymond, thanks for reaching out. My name is Bernard a Windows fan like you. I'll be happy to help you out today.

    I understand the issue you have, nothing to worry I am here to help, we need to analyze the error, can you please check if you have minidump files on the PC so that we can further examine the root cause of the issue?

    Press Windows key + E (To open File Explorer)

    Click "This PC" > then follow the file path:

    C:\Windows\Minidump

    Copy the Minidump files and save them to another location like Desktop or Documents.

    Then please upload it to Cloud storage like OneDrive or any cloud storage you are using and please share the shareable link here.

    To upload and share the link using One Drive:

    Go to this link: https://onedrive.live.com/ then upload the file.

    Then provide the shareable link by following the steps from this link: https://support.microsoft.com/en-us/office/shar...

    Let me know how it goes and I hope that helps.

    Bernard

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2024-02-06T00:59:43+00:00

    Have you been encountering issues with debugging the memory.dmp file? You can download Windbg for free as part of the Windows SDK download. Windbg will help you to identify the file and function call that is causing the crash. What error message are you receiving with the BSOD? It's possible that there may be some corrupted files, but you may have already tried the "Dism /online /cleanup-image /restorehealth" and "sfc /scannow" commands in the command prompt (admin). If there are no pending updates, you should proceed to the next phase. Is the BSOD appearing randomly or after some time? Maybe some game in particular? If so, it could be a thermal issue on your CPU or GPU. If you're using a digital PSU like Corsair AX860i, it may have caused many BSODs or unexpected shutdowns. It took me a year to realize that it was the PSU in a problem with similarities. If the issue is related to RAM, the BSOD error usually displays "Access violation" because it is trying to write to a "broken" area or one with the wrong data. Are you keeping an eye on the temperature while you play?

    I believe this could be a driver issue if it's not related to thermal problems. I suggest that you try Windbg by opening the .dmp file and checking the last crashing driver with the "!analyze -v" command. If you're confident about the drivers and have checked the Windows files' integrity, please check the temperature. Additionally, run a memory diagnostic test. If there is a BSOD after recovering from sleep, disable the fast boot and reset the hibernation file and pagefile. Also, check the Event Log around the time the crash occurred. It may have additional information.

    Was this answer helpful?

    0 comments No comments