问题标签 [mscorwks.dll]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
.net - mscordacwks.dll 和 mscorwks.dll 混淆
mscordacwks.dll 和 mscorwks.dll 在 .Net 框架运行时、构建和调试过程中执行的不同功能是什么?这个话题有推荐的读物吗?我已经搜索了很长一段时间但失败了。
提前谢谢,乔治
c# - Visual Studio 2008 - .NET 2.0 目标应用程序无法在 XP 中运行(无法加载 mscorwks.dll)
我有一个面向 .NET 2.0 的 C# windows 窗体应用程序,当安装 .NET 3.5 时,它在 XP 上运行良好。但是,当仅安装 .NET 2.0 时出现错误:
“WindowsFormsApplication1.exe - .NET Framework 初始化错误” - “C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll 无法加载”
我已经用一个基本的默认 Windows 窗体应用程序进行了尝试,但在安装了 .NET 2.0 的 XP SP1、SP2 和 SP3 上遇到了这个错误。
我还缺少其他步骤吗?
c# - mscorwks.dll中出现异常代码c0000005的原因及解决方法是什么?
当应用程序在使用测试完成启动的 Windows Server 2008 R2 上运行时,从 mscorwks.dll 引发异常代码 C0000005。其他平台(Windows XP、Server 2003 R2、Windows 7 32 位和 64 位)不存在此异常。
单次执行的事件日志包含许多由 .NET 运行时引发的事件 ID 为 1023 的以下事件:
.NET 运行时版本 2.0.50727.4952 - 致命的执行引擎错误 (7383851A) (80131506)
该应用程序本身使用由 Visual Studio 从WSDL文件生成的SOAP接口,这是一个具有嵌入式互操作的 COM 对象,并且面向.NET 4。
运行sfc /scannow并发现受影响系统上的系统文件没有问题。
可以进行哪些故障排除来确定解决方案?
wpf - WPF 应用程序崩溃:错误模块 mscorwks.dll
在某些安装了 .NET Framework 3.5 SP1 的 Win XP SP3 计算机上,我的 WPF 应用程序有时会崩溃。在应用程序日志中,我发现了这两个错误:
错误应用程序 mdp.serve.exe,版本 2.1.215.0,标记 4e302d6a,错误模块 mscorwks.dll,版本 2.0.50727.3623,标记 4d8c187e,调试?0,故障地址0x000a20c1。有关详细信息,请参阅http://go.microsoft.com/fwlink/events.asp上的帮助和支持中心。
有什么想法或建议吗?谢谢你。
.net - 什么可能导致 mscorwks!ThreadpoolMgr::FireTimers 的访问冲突?
以下访问冲突每隔几天就会使我的应用程序崩溃。这可能是什么原因造成的?
这是堆栈跟踪
这是我的版本信息
.net - WinDbg 要求特定版本的 mscordacwks.dll。我在哪里可以找到这个?
我正在尝试使用 WinDbg 和 SOS.dll 读取 .NET 2.0 程序集的故障转储文件。
通过阅读,我了解到我必须将 sos.dll、mscorwks.dll 和 mscordacwks.dll 复制到 windbg 安装目录中。
所以我这样做了,但 WinDbg 然后告诉我,我自己的 .Net 目录中的副本是错误的版本。WinDbg 正在寻找 mscordacwks.dll_x86_x86_2.0.50727.4211.dll,我有 mscordacwks.dll_x86_x86_2.0.50727.5420.dll
问题是:我在哪里可以找到这些文件的正确版本?
a)在构建崩溃的应用程序的机器上
或
b)在应用程序崩溃的机器上?
我找到了这个站点,您可以在其中查看哪个 .NET 补丁包含哪些版本,但我没有设法下载相关补丁(找不到它),所以我想到从其中一台受影响的机器上复制文件会更快。
debugging - Debug Diagnostic not generating dumps on Crash
I have configured DebugDiag to monitor all app pools for crashes. One of our App pool stopped today but DD did not generate any dump files. Event Viewer shows the error:
Application Poole is being automatically disabled due to a series of failures in the processes serving that application Pool.
Currently there are no breakpoints added to DD and first chance exception is not enabled.
Are they really required to get the dump generated? Any special IIS Config required?
I'm on win 2003 with Debug Diag 1.2.
It has generated dumps in the past for memory but haven't seen any crash dumps so far.
Your help will be greatly appreciated, pleaseee guide.
clr - COMDynamicWrite.SavePEFile 在哪里实现?
我正在调试将动态程序集保存到磁盘的问题,我想看看将程序集 PE 文件保存到磁盘时会引发哪些异常。保存代码最终调用到AssemblyBuilder.Save
最终调用内部方法ModuleBuilder.SavePEFile
。此方法是一个内部QCall,目标方法在一个名为 的类中声明COMDynamicWrite
。但是,整个存储库似乎没有此方法的实现。
在哪里以及如何COMDynamicWrite::SavePEFile
实施?