Blue Screen (BSOD) After System Image Restore - *** STOP 0x000000F4...

Page 3 of 6 FirstFirst 12345 ... LastLast

  1. Posts : 42
    Windows 7 Home Premium x64
    Thread Starter
       #21

    centaur78 said:
    try running this command and let me know the output

    reg query \\\HKLM\SYSTEM\CurrentControlSet\Control\CrashControl

    then try using this for ex.

    wmic recoveros set MiniDumpDirectory = D:\Minidump ( or whichever drive you have)

    then try

    wmic recoveros set DebugInfoType = 3
    I did reg query \\\HKLM\SYSTEM\CurrentControlSet\Control\CrashControl exactly and it says:

    ERROR: Invalid key name.
    Type "REG QUERY /?" for usage.

    I then proceeded to do your other commands. They both said successful, but it never dumped to file and the DebugInfoType got reset back to 0.
      My Computer


  2. Posts : 1,454
    Windows 7 ultimate x64
       #22

    oh crap....

    sorry try this...

    REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\CrashControl
      My Computer


  3. Posts : 42
    Windows 7 Home Premium x64
    Thread Starter
       #23

    centaur78 said:
    oh crap....

    sorry try this...

    REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\CrashControl
    It says:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
    AutoReboot REG_DWORD 0x0
    CrashDumpEnabled REG_DWORD 0x0
    Overwrite REG_DWORD 0x1
    DumpFilters REG_MULTI_SZ dumpfve.sys

    Thank you.
      My Computer


  4. Posts : 1,454
    Windows 7 ultimate x64
       #24

    Okie good

    Follow the next steps one after another... Each time you type Yes when asked to overwrite......

    First set the crash dump to minidump... thats why its 0x3

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v CrashDumpEnabled /t REG_DWORD /d 0x3

    Next set the log event

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v LogEvent /t REG_DWORD /d 0x1

    Then the Minidump counts

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpsCount /t REG_DWORD /d 0x32

    Then the Dump file

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v DumpFile /t REG_EXPAND_SZ /d ^%SystemRoot%\MEMORY.DMP

    Then the Minidump location

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpDir /t REG_EXPAND_SZ /d ^%SystemRoot%\Minidump

    Once finished... do the reg query to see of everything is enabled.

    REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\CrashControl

    The resulting query should look like this.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
    AutoReboot REG_DWORD 0x1
    CrashDumpEnabled REG_DWORD 0x3
    Overwrite REG_DWORD 0x1
    LogEvent REG_DWORD 0x1
    MinidumpsCount REG_DWORD 0x32
    DumpFile REG_EXPAND_SZ %SystemRoot%\MEMORY.DMP
    MinidumpDir REG_EXPAND_SZ %SystemRoot%\Minidump
    DumpFilters REG_MULTI_SZ dumpfve.sys
      My Computer


  5. Posts : 42
    Windows 7 Home Premium x64
    Thread Starter
       #25

    centaur78 said:
    Okie good

    Follow the next steps one after another... Each time you type Yes when asked to overwrite......

    First set the crash dump to minidump... thats why its 0x3

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v CrashDumpEnabled /t REG_DWORD /d 0x3

    Next set the log event

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v LogEvent /t REG_DWORD /d 0x1

    Then the Minidump counts

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpsCount /t REG_DWORD /d 0x32

    Then the Dump file

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v DumpFile /t REG_EXPAND_SZ /d ^%SystemRoot%\MEMORY.DMP

    Then the Minidump location

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpDir /t REG_EXPAND_SZ /d ^%SystemRoot%\Minidump

    Once finished... do the reg query to see of everything is enabled.

    REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\CrashControl

    The resulting query should look like this.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
    AutoReboot REG_DWORD 0x1
    CrashDumpEnabled REG_DWORD 0x3
    Overwrite REG_DWORD 0x1
    LogEvent REG_DWORD 0x1
    MinidumpsCount REG_DWORD 0x32
    DumpFile REG_EXPAND_SZ %SystemRoot%\MEMORY.DMP
    MinidumpDir REG_EXPAND_SZ %SystemRoot%\Minidump
    DumpFilters REG_MULTI_SZ dumpfve.sys
    I just released you could use the right directional key to copy from the previous command by chance when doing these command. Never knew that before and saved me some time. :)

    Results:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
    AutoReboot REG_DWORD 0x0
    CrashDumpEnabled REG_DWORD 0x3
    Overwrite REG_DWORD 0x1
    DumpFilters REG_MULTI_SZ dumpfve.sys
    LogEvent REG_DWORD 0x1
    MinidumpsCount REG_DWORD 0x32
    DumpFile REG_EXPAND_SZ X:\%SystemRoot%\MEMORY.DMP
    MinidumpDir REG_EXPAND_SZ X:\%SystemRoot%\Minidump
    I don't think the autoreboot is significant, but what about the drive saying X:\ instead of my drive which is C:\?
      My Computer


  6. Posts : 1,454
    Windows 7 ultimate x64
       #26

    Aha

    Thats the problem... it should never be X or C.... as %SystemRoot% tells windows whatever is drive where windows in installed.

    ok repeat only the last two steps again ...

    Then the Dump file

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v DumpFile /t REG_EXPAND_SZ /d ^%SystemRoot%\MEMORY.DMP

    Then the Minidump location

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpDir /t REG_EXPAND_SZ /d ^%SystemRoot%\Minidump

    Remember there is a carat ^ .. after the /d.. its important to add this


    One question... how are you doing this command i mean is it from the DVD or is it from the command line through F8... sorry i should have asked this before ???
      My Computer


  7. Posts : 42
    Windows 7 Home Premium x64
    Thread Starter
       #27

    centaur78 said:
    Aha

    Thats the problem... it should never be X or C.... as %SystemRoot% tells windows whatever is drive where windows in installed.

    ok repeat only the last two steps again ...

    Then the Dump file

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v DumpFile /t REG_EXPAND_SZ /d ^%SystemRoot%\MEMORY.DMP

    Then the Minidump location

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpDir /t REG_EXPAND_SZ /d ^%SystemRoot%\Minidump

    Remember there is a carat ^ .. after the /d.. its important to add this


    One question... how are you doing this command i mean is it from the DVD or is it from the command line through F8... sorry i should have asked this before ???
    I was doing it through F8 but I do have the disc in also. I did have the carat after /d. Do I still repeat the last steps?
      My Computer


  8. Posts : 1,454
    Windows 7 ultimate x64
       #28

    F8 is fine..

    Yes please repeat and then do a REG QUERY again
      My Computer


  9. Posts : 42
    Windows 7 Home Premium x64
    Thread Starter
       #29

    centaur78 said:
    F8 is fine..

    Yes please repeat and then do a REG QUERY again
    I copied the output wrong, it actually says:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl
    AutoReboot REG_DWORD 0x0
    CrashDumpEnabled REG_DWORD 0x3
    Overwrite REG_DWORD 0x1
    DumpFilters REG_MULTI_SZ dumpfve.sys
    LogEvent REG_DWORD 0x1
    MinidumpsCount REG_DWORD 0x32
    DumpFile REG_EXPAND_SZ X:\windows\MEMORY.DMP
    MinidumpDir REG_EXPAND_SZ X:\windows\Minidump
      My Computer


  10. Posts : 1,454
    Windows 7 ultimate x64
       #30

    This is weird... The command should set it to %SystemRoot%..... not sure why it still refers to X ??

    Could you repeat the last steps again .... but this time... try to make it specific..

    Like

    For Dump file

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v DumpFile /t REG_EXPAND_SZ /d ^C:\Windows\MEMORY.DMP

    Then the Minidump location

    REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v MinidumpDir /t REG_EXPAND_SZ /d ^C:\Windows\Minidump


    Let me know what the REG QUERY shows after doing this
      My Computer


 
Page 3 of 6 FirstFirst 12345 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 22:40.
Find Us