Share via

Computer keeps freezing.

Omar Wise 0 Reputation points
2026-06-14T05:06:22.35+00:00

OK, so I am a super layman. I have been really trying to learn how to figure this out on my own but I am stumped. This happens at random times with no common variable.

I have event viewer info and I think MAYBE I opened up the right thing on WINDBG but honestly IDK if I am even looking at the right stuff.

Really I am just out of my league here and not even sure if I am starting in the right spot.

User's image

User's image

User's image

Windows for home | Windows 10 | Performance and system failures
0 comments No comments

Answer accepted by question author

DaveM121 890.1K Reputation points Independent Advisor
2026-06-14T05:41:19.6233333+00:00

Please upload any minidump files you have, I will check those to see if they provide any insight into a potential cause of the system crashes.

Open Windows File Explorer

Navigate to C:\Windows\Minidump

Copy any minidump files onto your Desktop, then zip those up

Upload the zip file to the Cloud (OneDrive, DropBox . . . etc.), then choose to share those and get a share link

Then post the link here to the zip file, so we can take a look for you.

Was this answer helpful?

1 person found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Gabriel 0 Reputation points
    2026-06-15T19:28:15.9366667+00:00

    Was this answer helpful?


  2. AI answer

    2026-06-14T05:06:38.9+00:00

    The screenshots show freezes without a clear bug check (no obvious BSOD). For this type of issue, the recommended approach is to first collect proper diagnostic data, then analyze it.

    Follow these steps in order:

    1. Prepare the system to capture a full memory dump
      1. Press Win + R, type sysdm.cpl, press Enter.
      2. On the Advanced tab, under Performance, select SettingsAdvancedChange and confirm there is a paging file on the system drive (usually C:). Its size should be at least “installed RAM + 100 MB”, and there must be more free disk space than installed RAM.
      3. Back in System PropertiesAdvanced, under Startup and Recovery, select Settings.
      4. In Write debugging information, choose Complete memory dump and check Overwrite any existing file.
    2. Enable keyboard-triggered crash dumps (so a freeze can be turned into a dump)
      1. Open Registry Editor (regedit).
      2. Go to:
        • HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters
        • HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\kbdhid\Parameters
      3. In each key, create a DWORD (32-bit) value named CrashOnCtrlScroll and set it to 1.
      4. Restart the computer.
      5. Next time the system hard-freezes, hold the right Ctrl key and press Scroll Lock twice. This forces a crash and writes a dump file to %SystemRoot%\MEMORY.DMP.
    3. Verify the dump file
      1. After reboot, confirm that %SystemRoot%\MEMORY.DMP exists.
      2. Use the Dump Check Utility (Dumpchk.exe) to verify the dump is valid.
    4. Analyze the dump on another machine
      1. Copy MEMORY.DMP to another Windows PC.
      2. Install the Windows 10 SDK and select Debugging Tools for Windows to get WinDbg.
      3. In WinDbg, set the symbol path to the Microsoft public symbol server: https://msdl.microsoft.com/download/symbols.
      4. Open the crash dump (File → Open Crash Dump) and start analysis. This will show whether the freeze is caused by a driver (for example, display driver like nvlddmkm.sys), hardware, or the kernel.
    5. If the system is frozen but still technically running (mouse may or may not move)
      • For advanced scenarios, attach a kernel debugger (KD/WinDbg) and break into the system to inspect CSRSS or the kernel, as described in the stalled-system debugging guidance.

    These steps convert random freezes into actionable crash dumps that can be analyzed reliably instead of guessing from Event Viewer alone.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.