“应用程序无法正确初始化(0xc000007b)。”

发布于 2024-09-13 00:46:58 字数 202 浏览 3 评论 0原文

当我尝试启动用 C++ 编写的程序时,出现此错误。它在我的另一台计算机(XP SP3 32 位)上运行良好,但在我的 Windows 7 64 位版本上运行不佳。 当我在程序上运行 Dependency Walker 时,它告诉我 IESHIMS.dll 丢失了,但它存在于 32 位和 64 位版本的 Internet Explorer 文件夹中。

任何人都可以帮助我吗?

I get this error when i try to start a program that I've made in C++. It works fine on my other computer (XP SP3 32bit) but not on my windows 7 64 bit version.
When I run Dependency Walker on the program, it tells me that IESHIMS.dll is missing, however it's there in the Internet Explorer folder of both 32 and 64 bit version..

Can anyone help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笑百媚生 2024-09-20 00:46:58

错误代码为 STATUS_INVALID_IMAGE_FORMAT,“Mumble 未设计为在 Windows 上运行或包含错误。请尝试使用原始安装介质再次安装该程序,或联系您的系统管理员或软件供应商以获取支持”。

对于 64 位版本的 Windows 来说,这可能有点过时了,90% 的可能性是您的 32 位程序正在尝试加载 64 位 DLL。 Windows 采取了很多措施来防止这种情况发生。文件系统虚拟化确保从 c:\windows\system32 加载的 DLL 被重定向到 c:\windows\syswow64,即 32 位 DLL 的所在位置。注册表虚拟化可确保 COM 服务器与 COM 客户端的位数相匹配。

您所做的一些事情可以绕过这些对策。也许您使用了 SetDllDirectory()。或者您将 DLL 复制到与 EXE 相同的文件夹中。或者您希望系统的 PATH 环境变量可以帮助您的程序找到正确的 DLL。类似的事情,从你的问题中还不清楚。 Windows 事件日志中应该有它的记录(不是 100% 确定)。如果所有其他方法都失败,SysInternals 的 ProcMon 实用程序可以向您显示它正在尝试加载的文件。

The error code is STATUS_INVALID_IMAGE_FORMAT, "Mumble is either not designed to run on Windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or the software vendor for support."

Which is a bit outdated perhaps for the 64-bit version of Windows, the 90% odds are that your 32-bit program is trying to load a 64-bit DLL. There's a lot that Windows does to prevent that from ever happening. File system virtualization ensures that DLL loads from c:\windows\system32 are redirected to c:\windows\syswow64, home of the 32-bit DLLs. Registry virtualization ensures that COM servers are matched with the bit-ness of the COM client.

There's something you do that bypasses these counter-measures. Maybe you used SetDllDirectory(). Or you copied DLLs to the same folder as your EXE. Or you are hoping that the system's PATH environment variable helps your program find the right DLL. Something like that, it isn't otherwise clear from your question. There ought to be a record of it in the Windows event log (not 100% sure). If all else fails, SysInternals' ProcMon utility can show you what file it is trying to load.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文