zoukankan      html  css  js  c++  java
  • 如何打开 Visual Studio 的 Dump,适用于调试 appcrash,exception

    https://keithbabinec.com/2018/06/12/how-to-capture-and-debug-net-application-crash-dumps-in-windows/

    https://docs.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps

    The second option is to configure WER to create a dump file for your specific application if it crashes. You can go this route if you don’t want live debugging and just need the dump file created on disk for later analysis. This feature is included in Windows, so there is no need to install extra software to create the dump. WER dump settings are configured via the registry as follows:

    • First create the base WER local dump registry key, if it doesn’t already exist.
      • HKLM:SOFTWAREMicrosoftWindowsWindows Error ReportingLocalDumps
    • Then, create the application specific dump file settings key.
      • If the application to save dumps for is HelloWorldCrasher.exe, then make the following:
      • New Key: HKLM:SOFTWAREMicrosoftWindowsWindows Error ReportingLocalDumpsHelloWorldCrasher.exe
        • Registry values under this key:
          • DumpFolder: [REG_EXPAND_SZ] folder path to store dump files.
          • DumpType: [REG_DWORD] Specify a value of 2 for full dumps, or 1 for mini-dump (smaller, but not full process memory space).
          • DumpCount: [REG_DWORD] the number of dumps to save before overwriting old dump files. Default is 10.
  • 相关阅读:
    当今的架构师和架构
    外企2
    测试驱动开发TDD系列
    在IIS中部署WCF中遇到的问题
    设计高可用和高负载的网站系统(转载)
    IIS中部署WCF
    无限级分类1
    读《WCF技术剖析》(卷一)
    无限极列表2
    TCP/IP、HTTP、WEBSERVICE、SOAP、ICE都使用后才有感慨
  • 原文地址:https://www.cnblogs.com/liujx2019/p/11607465.html
Copyright © 2011-2022 走看看