Visual Studio 2010 已停止在 win 7 x 64 上运行

发布于 2024-12-12 17:33:38 字数 651 浏览 2 评论 0原文

在 Win7 x64 上使用 VS2010 用 C++ 编译一个应用程序后,出现以下内容:

Microsoft Visual Studio 已停止工作

问题签名:问题事件名称:CLR20r3

问题签名 01:devenv.exe

问题签名02:10.0.40219.1

问题签名 03:4d5f2a73

问题签名 04:Microsoft.VisualStudio.Shell.10.0

问题签名05:10.0.0.0

问题签名 06:4d5f1237

问题签名 07:50c

问题签名 08:4b

问题签名 09:System.InvalidCastException

操作系统版本:6.1.7600.2.0.0.256.1

区域设置 ID:11274

有关问题的其他信息:LCID:1033

我已安装 VS2010 SP1,但我有没有解决办法。

我还想说,在 Win7 x32 上安装的相同 VS2010 运行良好。

有人知道我该如何解决这个问题吗?

After compiling one application in C++ using VS2010 on Win7 x64 appears the following:

Microsoft Visual Studio has stopped working

Problem signature: Problem Event Name: CLR20r3

Problem Signature 01: devenv.exe

Problem Signature 02: 10.0.40219.1

Problem Signature 03: 4d5f2a73

Problem Signature 04: Microsoft.VisualStudio.Shell.10.0

Problem Signature 05: 10.0.0.0

Problem Signature 06: 4d5f1237

Problem Signature 07: 50c

Problem Signature 08: 4b

Problem Signature 09: System.InvalidCastException

OS Version: 6.1.7600.2.0.0.256.1

Locale ID: 11274

Additional information about the problem: LCID: 1033

I've installed VS2010 SP1, but I have no solution.

I also want to say the same VS2010 installed on Win7 x32 works fine.

Anyone knows How can I solve this?

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

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

发布评论

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

评论(2

猥琐帝 2024-12-19 17:33:38

我通过手动注册 Ieproxy.dll 遇到了这个问题。
为此,请按照下列步骤操作:
单击“开始”,在搜索框中键入 cmd。
在结果列表中,右键单击 cmd ,然后单击以管理员身份运行以启动提升的命令提示符。
如果系统提示您输入管理员密码,请键入您的密码。如果系统提示您确认,请单击“继续”。

For 32-bit operating systems, run the following command:
regsvr32 "c:\Program Files\Internet Explorer\ieproxy.dll"   

For 64-bit operating systems, run the following command:
regsvr32 "c:\Program Files (x86)\Internet Explorer\ieproxy.dll"

I got this issue by registering the Ieproxy.dll manually.
To do this, follow these steps:
Click Start , type cmd in the search box.
In the results list, right-click cmd , and then click Run as administrator to start an elevated command prompt.
If you are prompted for an administrator password, type your password.If you are prompted for confirmation, click Continue .

For 32-bit operating systems, run the following command:
regsvr32 "c:\Program Files\Internet Explorer\ieproxy.dll"   

For 64-bit operating systems, run the following command:
regsvr32 "c:\Program Files (x86)\Internet Explorer\ieproxy.dll"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文