View Single Post
  #36  
Old September 10th 20, 04:09 AM posted to alt.comp.os.windows-10,alt.comp.microsoft.windows
Arlen Holder
external usenet poster
 
Posts: 186
Default Windows 10 BSOD indicates a hardware problem - but what hardware is the problem?

UPDATE https://i.postimg.cc/q7ZQbgXy/bsod-bios05.jpg

I also decided to ensure I'm getting a BSOD dump file for information:
o Here is what I just now enabled to obtain a good memory dump:

Win+R cmd {control+shift+Enter} == admin prompt
o Note: The default memory dump file is: %SystemRoot%\Memory.dmp

Set the filespec to the memory dump file:
o wmic recoveros set DebugFilePath = C:\data\sys\bsod\bsod.dmp

Turn on the writing of BSOD events to the memory dump file:
o wmic recoveros set WriteToSystemLog = True

Send an administrative alert when a crash occurs:
o wmic recoveros set SendAdminAlert = True

Turn off automatic restart after a crash:
o wmic recoveros set AutoReboot = False

Set to record a COMPLETE memory dump (doesn't work for more than 2GB RAM):
o wmic recoveros set DebugInfoType = 1

Don't automatically overwrite a previous memory dump file:
o wmic recoveros set OverwriteExistingDebugFile = 0
Ads