And a dump file viewing tool --- MiniDumpView

Brief introduction

SUMMARY minidump MiniDumpView utility in the data stream available for display. In particular, it can display the following information:

  • Operating system and CPU information
  • Process information (process ID and time)
  • Module list (containing details of each module)
  • Thread list (contains detailed information about each thread)
  • Exception information
  • Stored in a small memory dump area list
  • A list of open handles
  • Virtual Memory layout
  • Note

Provided in the form of a green package, after extracting the available

usage

  1. Set Environment Variables
  2. Command line execution
    MdpView FileName
    where FileName is the name of a small dump file

     

     

     

     SYSTEM INFORMATION
    ------------------

    Number of processors:  8
    Architecture:          0 (Intel)
    Level:                 6
    Revision:              24067
    OS version:            10.0.17134
    Service pack:          
    Platform ID:           2 (WinNT)


    COMMENTS (ANSI)
    ---------------

    Not available.



    COMMENTS (UNICODE)
    ------------------

    Not available.



    PROCESS INFORMATION
    -------------------

    Process ID:  bd4
    CreateTime:  5dd365de  Tue Nov 19 11:47:42 2019
    UserTime:    000005f7  0 days 0:25:27
    KernelTime:  0000011b  0 days 0:04:43


    EXCEPTION INFORMATION
    ---------------------

    Thread ID:             c4c

    Code:                  c0000409
    Flags:                 00000001
    Address:               69457666
    Nested exception:      00000000
    Parameters:            1
      [0] = 00000007

    Thread context:

    Context flags: 0001003f
    EIP: 69457666   ESP: 00efdd4c   EBP: 00efdd60   EFLAGS: 00200202
    EAX: 00000001   EBX: 17bc9020   ECX: 00000007   EDX: 000001e0
    EDI: 17bc9430   ESI: 17bc9020
    CS:  0023       SS:  002b
    DS:  002b       ES:  002b       FS:  0053       GS:  002b
    DR0: 00000000   DR1: 00000000   DR2: 00000000   DR3: 00000000
    DR6: 00000000   DR7: 00000000


    THREAD INFORMATION
    ------------------

    Number of threads:     60

    .....

Explanation

MiniDumpView dependent on DbgHelp.dll (required DbgHelp.dll 6.3.17.0 or later). The DLL must be located in the same directory as the executable file MiniDumpView.

Guess you like

Origin www.cnblogs.com/yilang/p/11899126.html