无法在某些Windows 7计算机上打开我的c#app

时间:2017-11-01 20:36:32

标签: c# .net winforms

我从系统事件中收到以下日志。我不知道为什么这只发生在某些机器上:

  

级别:信息;来源:Windows错误报告

     

详细信息:756021398 30 CLR20r3不可用0 DayZ Ambient Launcher.exe 1.0.0.0 59d3d3b2 System.Windows.Forms 4.7.2558.0 59d4145b 63d 36 PSZQOADHX1U5ZAHBHOHGHLDGIY4QIXHX   C:\ Users \ kevo1414 \ AppData \ Local \ Temp \ WERAA52.tmp.WERInternalMetadata.xml C:\ ProgramData \ Microsoft \ Windows \ WER \ ReportArchive \ AppCrash_DayZ Ambient Lau_4e74decfa163bcb1cc9a3fc7dd961b8b6b975b8_108bafbf   0 093ea276-bf39-11e7-b709-902b345e4b59 0

     

级别:错误来源:应用程序错误

     

详情:   DayZ Ambient Launcher.exe 1.0.0.0 59d3d3b2 KERNELBASE.dll 6.1.7601.23915 59b94abb e0434352 0000c54f 1498 01d35345cae21649 C:\ Users \ kevo1414 \ Downloads \ DayZ Ambient Launcher 1.1 [eXWoLL,Cobblest0ne] \ DayZ Ambient Launcher.exe C:\ Windows \ syswow64 \ KERNELBASE.dll 093ea276-bf39-11e7-b709-902b345e4b59

     

级别:错误源:.NET运行时

     

详情:   应用程序:DayZ Ambient Launcher.exe Framework版本:v4.0.30319>描述:由于未处理的异常,进程终止。异常信息:System.Windows.Forms.AxHost.CreateWithLicense(System.Windows.Forms.AxHost.CreateWithLicense)上的System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(System.Guid ByRef,System.Object,Int32,System.Guid ByRef)中的System.Runtime.InteropServices.COMException。在System.Windows上的System.Windows.Forms.AxHost.GetOcxCreate()处的System.Windows.Forms.AxHost.CreateInstance()处的System.Windows.Forms.AxHost.CreateInstanceCore(System.Guid)处的String,System.Guid。 System.Windows上System.Windows.Forms.Control.CreateControl(Boolean)的System.Windows.Forms.Control.CreateControl(Boolean)上的System.Windows.Forms.AxHost.CreateHandle()中的Forms.AxHost.TransitionUpTo(Int32) .atms.AxHost.EndInit()at dayz64.Form1.InitializeComponent()at dayz64.Form1..ctor()at dayz64.Program.Main()

1 个答案:

答案 0 :(得分:-2)

我可以看到两种可能的原因:操作系统不匹配或.NET安装不匹配。

Windows 7在引入x64时是正确的,因此有些安装使用x32或x64,如果你没有安装正确版本的应用程序,它们之间可能会出现问题。

如果要在Windows 7计算机上运行此应用程序,请打开“开始”菜单,右键单击“计算机”,然后单击“属性”。您可以从那里查看正在运行的操作系统的规格。

第二个可能的问题是.NET安装问题 - 您可能安装了过时的.NET版本,或者应用程序依赖于.NET的旧版本而无法在较新的框架上运行,在这种情况下,您需要查看产品的规格和您正在使用的版本。

希望这有帮助!