Dump file creation
-
Hi, I want to generate a dump file automatically whenever the application crashed/hanged. Is there any option to do it or how to do it programatically as the developer don't know when that application crashes at client location. Thanks in advance for your help.
-
Hi, I want to generate a dump file automatically whenever the application crashed/hanged. Is there any option to do it or how to do it programatically as the developer don't know when that application crashes at client location. Thanks in advance for your help.
AFAIK Dump Files are managed by the OS - whichever it is - so you should look on the OS documentation. It is probable that you need to instruct the OS that you want a dump file and of which kind you desire (short, long, kernel...). For example see if http://msdn.microsoft.com/en-us/library/d5zhxt22.aspx[^] is of any use for you. HTH
-
Hi, I want to generate a dump file automatically whenever the application crashed/hanged. Is there any option to do it or how to do it programatically as the developer don't know when that application crashes at client location. Thanks in advance for your help.
-
You can tell windows to create these dmp's for you (starting from Windows Server 2008 and Windows Vista SP1). See MSDN for details: Collecting User-Mode Dumps[^]
Hi, Thanks for the reply.
-
AFAIK Dump Files are managed by the OS - whichever it is - so you should look on the OS documentation. It is probable that you need to instruct the OS that you want a dump file and of which kind you desire (short, long, kernel...). For example see if http://msdn.microsoft.com/en-us/library/d5zhxt22.aspx[^] is of any use for you. HTH
Hi, Thanks for your reply.