6

For debugging managed applications If I have two dump files, is there anyway to compare these two file? I am thinking about the scenario of memory leaks and if I take process snapshots at different time, I was wondering if there are anyways of automatically comparing the files and get some type of report on which object has largest growth in count and/or size. I know you can generate these type of reports via ANT memory profiler but looking for any free tools/scripts for this purpose.

imak
  • 6,489
  • 7
  • 50
  • 73
  • Check if this article helps. http://stackoverflow.com/questions/9008065/automating-windbg-or-otherwise-extracting-information-from-dump-files – Rockstart Apr 01 '12 at 18:41

1 Answers1

0

Can you use !dumpheap -stat and compare the results using a powershell script?

Thomas Bratt
  • 48,038
  • 36
  • 121
  • 139
  • i don't know much abuot powershell with windbg. Anyone knows if its possible to do? – imak Mar 01 '11 at 19:18