首页 > 代码库 > WinDbg抓取dmp文件
WinDbg抓取dmp文件
应用程序发生异常时抓取dmp:
adplus.vbs -crash -pn w3wp.exe -y srv*c:\symbols*http://msdl.microsoft.com/download/symbols
关于w3wp进程抓取不到dump文件,可参考:
http://blogs.msdn.com/b/stuartleeks/archive/2009/07/22/adplus-windows-7-and-asp-net.aspx
对adplus.vbs作如下修改:
if g_CurrentProcesses(PCount).Name = "W3WP.EXE" Then ‘ read the next line if not objTextFile.AtEndofStream Then strAux = objTextFile.ReadLine ‘ check the command line for the -ap parameter If InStr(strAux, "-ap") Then arrAux = split(strAux, "-ap", -1, 1) strPackageName = trim(arrAux(1))‘ modifications start (http://blogs.msdn.com/stuartleeks/archive/2009/07/22/adplus-windows-7-and-asp-net.aspx)If Mid(strPackageName, 1, 1) = """" Then strPackagename = Mid(strPackageName, 2, InStr(2,strPackageName, """") - 2)End If‘ modifications end
WinDbg抓取dmp文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。