我最近安装了Visual 2017,就在它发布后不久(2017年3月)。
在VS 2008中,当我去调试我的智能设备项目时,我会得到一个错误消息对话框,上面只写着“操作无法完成”。、。
下面是我观察到的一个列表:
我试过的是:
发布于 2017-03-29 13:03:36
开发商社区:原因是该组件的类型库注册错误。
要解决此问题,您可以:
使用管理员权限打开命令提示符并执行以下命令:
reg add HKEY_CLASSES_ROOT\TypeLib{6A1A7D39-8449-4287-8EF0-CE256582C940}\8.0\0\win32 /t REG_SZ /d "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.tlb"或者,您可以执行:
regsvr32 "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.dll"正确的注册将包含在Visual的未来版本中。
发布于 2017-03-29 01:23:10
在尝试使用Visual调试自身之后,我得到了以下错误消息
"A Visual Studio DLL, coloader8O.dll, is not correctly installed. Please
repairyour Visual Studio installation via ‘Add or Remove Programs’ in
Control Panel.
If the problem persists, you can manually register coloader8O.dll from
the command prompt with ‘regsvr32
“%CommonProgramFiles%\Microsoft
Shared\VS7Debug\coloader8O.dll”.我按照在developercommunity.visualstudio.com上找到的一些指令修复了这个问题,其中涉及将HKEY_CLASSES_ROOT\TypeLib{6A1A7D39-8449-4287-8EF0-CE256582C940}\8.0\0\win32上的regestry值更改为C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\\coloader80.tlb
https://stackoverflow.com/questions/43082657
复制相似问题