Visual Studio创建的软件未运行,事件日志显示应用程序错误。 [英] Visual Studio Created Software Not Running, Event Log Shows Application Error.

查看:130
本文介绍了Visual Studio创建的软件未运行,事件日志显示应用程序错误。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


您好,我是第一次使用此社区。

希望有人可以帮助我解决这个问题,Aready出现几天。谷歌那个错误代码也没有解决方案。


我调试软件时出现错误信息,从Visual Studio创建的每个软件都无法打开。它显示A,大约5-10秒[在任务管理器中],然后我转到事件查看器查看崩溃日志,第一个事件日志是应用程序错误[显示为
以下]


错误应用程序名称:Config.exe,版本:1.0.0.0,时间戳:0x5a3a0580

错误模块名称:KERNELBASE.dll,版本:6.1.7601.23915,时间戳:0x59b94abb

异常代码:0xc06d007f

故障偏移量:0x0000c54f

错误进程ID:0xce0

错误应用程序启动时间:0x01d3795d37d60091

错误的应用程序路径:C:\C#\HowToDoThis\Config\bin\Debug \Config.exe

错误模块路径:C:\Windows\syswow64\KERNELBASE.dll

报告编号:7700b485-e550-11e7-acf5-005056c00008


另一个事件日志显示为信息


故障桶1402672972,类型391550938

事件名称:APPCRASH

回复:不可用

驾驶室ID:0

$
问题签名:

P1:Config.exe

P2:1.0.0.0

P3:5a3a0580

P4:KERNELBASE.dll

P5:6.1。 7601.23915

P6:59b94abb

P7:c06d007f

P8:0000c54f

P9:

P10:



附件:

C:\ Users \ HowToDoThis\AppData \ Local \ Temp \ WER9FB9 .tmp.WERInternalMetadata.xml

C:\Users\HowToDoThis\AppData\Local\Temp\WERAB3E.tmp.appcompat.txt

C:\Us ers \HowToDoThis\AppData \ Local \Temp \ WERAB6E.tmp.mdmp



这些文件可在此处获取:

C:\Users\HowToDoThis\AppData\Local\Microsoft\Windows\WE​​R\ReportArchive\AppCrash_Config.exe_5dfc4b74a6e1d6c9a193366e4da279ba75a5c7a7_cab_1b97b175



分析符号:

重新检查解决方案:0

报告ID:7700b485-e550-11e7-acf5-005056c00008

报告状态:137


内部代码就像这样


静态无效Main(string [] args)

{

    Console.WriteLine(" Testing ...");

    Console.ReadKey();

}

解决方案

嗨朋友,


欢迎来到MSDN论坛。


如何用简单的代码示例创建一个新的应用程序:

 static void Main(string [] args)
{
Console.WriteLine(" Testing ...");
Console.ReadKey();
}

调试新应用时,是否仍有此错误?如果仍然出现此错误,请打开管理CMD窗口并导航到C:\Program Files(x86)\ Microsoft Visual Studio 14.0 \Common7 \IDE(VS2015)并运行以下命令:

              &的 devenv的/安全模式

它可以防止Visual Studio启动时加载所有第三方VSPackage,从而确保稳定执行。如果它有效,这个问题应该由扩展引起,您需要删除Tools-Extensions and Updates下的已安装扩展。


如果它无法在安全模式下运行,请尝试以管理员身份运行visual studio或修复Visual Studio。



Hello, I'm First Time Use This Community.

Hope Someone Can Help Me Get Out Of This Problems, Aready Appearing Some Days Aready. Google That Error Code Also No Solutions.

I Got An Error Message When I Debugging Software, Every Software Created From Visual Studio Unable To Open. It Shows A While, About 5-10 Seconds [In Task Manager], Then I Go To Event Viewer To See Crash Log, First Event Log Was Application Error [Show As Below]

Faulting application name: Config.exe, version: 1.0.0.0, time stamp: 0x5a3a0580
Faulting module name: KERNELBASE.dll, version: 6.1.7601.23915, time stamp: 0x59b94abb
Exception code: 0xc06d007f
Fault offset: 0x0000c54f
Faulting process id: 0xce0
Faulting application start time: 0x01d3795d37d60091
Faulting application path: C:\C#\HowToDoThis\Config\bin\Debug\Config.exe
Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
Report Id: 7700b485-e550-11e7-acf5-005056c00008

And Another Event Log Shows As Information

Fault bucket 1402672972, type 391550938
Event Name: APPCRASH
Response: Not available
Cab Id: 0

Problem signature:
P1: Config.exe
P2: 1.0.0.0
P3: 5a3a0580
P4: KERNELBASE.dll
P5: 6.1.7601.23915
P6: 59b94abb
P7: c06d007f
P8: 0000c54f
P9:
P10:

Attached files:
C:\Users\HowToDoThis\AppData\Local\Temp\WER9FB9.tmp.WERInternalMetadata.xml
C:\Users\HowToDoThis\AppData\Local\Temp\WERAB3E.tmp.appcompat.txt
C:\Users\HowToDoThis\AppData\Local\Temp\WERAB6E.tmp.mdmp

These files may be available here:
C:\Users\HowToDoThis\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_Config.exe_5dfc4b74a6e1d6c9a193366e4da279ba75a5c7a7_cab_1b97b175

Analysis symbol:
Rechecking for solution: 0
Report Id: 7700b485-e550-11e7-acf5-005056c00008
Report Status: 137

And Inside Code Just Like This

static void Main(string[] args)
{
    Console.WriteLine("Testing...");
    Console.ReadKey();
}

解决方案

Hi friend,

Welcome to MSDN forum.

How about create a new application with the simple code sample:

static void Main(string[] args)
{
    Console.WriteLine("Testing...");
    Console.ReadKey();
}

When you debugging the new app, whether still have this error? If you still get this error, please  open an administrative CMD window and navigate to C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE (VS2015)and run these commands:
                devenv /safemode
It prevents all third-party VSPackages from loading when Visual Studio starts, thus ensuring stable execution. if it works, this issue should be caused by the extensions and you need to remove the installed extensions under Tools—Extensions and Updates.

If it doesn’t work in safe mode,, please try to run visual studio as administrator or repair your Visual Studio.


这篇关于Visual Studio创建的软件未运行,事件日志显示应用程序错误。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆