Windows command reference
PowerShell — read CrashControl settings
Read the main Windows crash-dump configuration values without changing them, useful when a real bugcheck is not producing the expected dump file.
Risk: LowReviewed: 2026-09-17
Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl' | Select-Object CrashDumpEnabled,DumpFile,MinidumpDir,OverwriteWhen to use it
Use after confirming that a blue-screen/bugcheck occurred and the expected Minidump or MEMORY.DMP is missing.
When not to use it
This is a read-only inspection. Do not copy registry-edit recipes from unrelated systems; dump type, page-file requirements and support context matter.
Primary reference