应用程序无法正确启动0xc00007b
我有一个 win32 应用程序。尝试在Windows 7 64位操作系统中的VisualStudio 2008中运行。已安装x64环境。因此,当我尝试运行我的项目时,我收到此错误“应用程序无法正确启动 0xc00007b”。我也没有链接错误。任何人请提出任何建议。
I have a win32 application. Trying to run in windows 7 64-bit OS in VisualStudio 2008. Have installed x64 Environment. So when i'm trying to run my project i'm getting this error "the application was unable to start correctly 0xc00007b". I have no link errors too. Anyone any suggestions please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我和你有同样的问题。我有一个 Win32 应用程序。当我使用 Visual Studio 2010 将此应用程序 Win32 转换为 X64 时,应用程序 x64 已成功编译。但是当我运行它时,它生成了错误消息:“应用程序无法正确启动(0xc00000b7)。单击“确定”关闭应用程序”。
通过更改配置属性->链接器的许多设置,花了几天时间才修复它。
特别是,我更改了 Linker.Manifestfile.Generate Manifest = No (/MANIFEST:NO) 的设置
它对我的应用程序有效。
祝你好运!
i got the same issue as you. I had a application Win32. When i converted this application Win32 to X64 with Visual Studio 2010, the application x64 is compiled successfully. But when i ran it, it generated the error message: "The application was unable to start correctly (0xc00000b7). Click ok to close the application".
It took few days to fix it by changing many setting of Configuration properties->linker.
Especially, i changed the setting of Linker.Manifestfile.Generate Manifest = No (/MANIFEST:NO)
It worked to my application.
Good luck!
它可能是 assemblyIdentity 或 dependencyAssembly 中的处理器架构不匹配。
It can be processorArchitecture mismatch in manifest in assemblyIdentity or in dependencyAssembly.