How to fix the error: "The program has stopped working APPCRASH"

I have a log and a catch attempt in this console application, but it doesn't seem to be that way.

Works fine on my dev machine, not on Win Server 2008. The event viewer has the same information as below.

I understand that there is not much here, but this is what I know. All previous deployments worked, so I don’t understand.

Please do not close and help me solve this problem. I will answer any questions that I can.

Thanks.

  Description:
   Stopped working

 Problem signature:
   Problem Event Name: APPCRASH
   Application Name: LoaderLive.exe
   Application Version: 2.0.1.0
   Application Timestamp: 4ef176d6
   Fault Module Name: KERNELBASE.dll
   Fault Module Version: 6.1.7601.17651
   Fault Module Timestamp: 4e211319
   Exception Code: e0434f4d
   Exception Offset: 0000b9bc
   OS Version: 6.1.7601.2.1.0.272.7
   Locale ID: 1033

 Read our privacy statement online:
   http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

 If the online privacy statement is not available, please read our privacy statement offline:
   C: \ Windows \ system32 \ en-US \ erofflps.txt
+4
source share
1 answer

If you have a top-level try / catch and it does not catch an exception, this is probably due to the fact that the error occurs at a very low level (for example, somewhere in your own code library) too early (before it starts) or to another thread (where your try / catch cannot reach).

To find out what happens, run the application under the debugger. If you have Visual Studio installed on the target machine, you can do it from there (open EXE and “Start Debugging”). If not, you can use windbg.exe / cdb.exe (available as Debugging Tools for Windows in the SDK Windows). Inside the debugger, you should see where the error occurred, since by default it stops on any fatal exception.

+3
source

Source: https://habr.com/ru/post/1387426/


All Articles