开发者

C# console application

I have sample exe say console.exe on "programfiles\myA开发者_运维技巧ppFolder" .It serves the purpose of logging the message to eventviewer

EventLog.WriteEntry(sSource, sEvent, EventLogEntryType.Warning,  234);

I need to call this exe on un-install of appcn from NSIS script .However it gives me an error always that "thisappConsole has encountered a problem and needs to close. We are sorry for the inconvenience."

Even browsing to the path "programfiles\myAppFolder\thisappConsole.exe" and manually clicking on it to execute even throws the same error. I do have admin access to m/c.

Can anyone help me with this.

If I put any other simple console app without any additional "using statements". it works fine ..


Press F5.

This will run the programme in the debugger, and you the unhandled exception will be displayed on screen. It will give a exception type, message, and line number.


Sounds to me like your event log application is throwing an unhandled exception, quite ironic considering it is an application for logging events!

I would put my money on it being a permissions issue as the event log needs to access the registry. As a work-around try running your application as an Admin. Would be handy to handle the AppDomain.UnhandledException event and log the exception.


you could try

Try
{
  your app code here
}
Catch (Exception ex)
{
  //Logg ex.ToString()
}


Try { your code here } Catch (Exception ex) { ex.message=""; } finally {}


Check to be sure you have the same version of the .Net framework installed on that machine, and also any referenced .dll's are in the same folder as the .exe.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜