Fix Internet Explorer Crashes with SharePoint 2013 Online Presence Indicators
IE中,只要是鼠标浮动到人名字上面的状态的时候,这个状态是与Lync相连接的,IE就会出现停止工作。
以下是解决方法。
Until the other day when I figured this out, every time I hovered my mouse pointer over a presence indicator on SharePoint Online, my browser – which is Internet Explorer 10 at the moment – would crash.

SharePoint 2013 Presence Indicators
It wasn’t some polite little crash, either. The window would freeze, the dreaded “Internet Explorer has stopped working” message would pop up, and I’d need to reload the page.

Not the exact image I was getting, but very close.
Forget about the “Check online for a solution and close the program” option. I tried clicking on that many times, if only to send the telemetry to Microsoft, but nothing useful came of it. “Close the program” it was and the Internet Explorer window would open up again.
This isn’t some huge loss unless you were entering data. The fact that it happened regularly when I was just moving my mouse from one part of the screen to another but not really hovering was annoying, though.
I asked about this in the MVP forums I have access to and no one else seemed to recognize the exact issue. Other browser issues, sure, but not this one. I decided to do a more serious round of Bingling.
I found a useful article from Patrick Fegan called Internet Explorer Crashing with Lync Contact Card. It told me perhaps how to fix the issue, but not why it was happening.
The MSDN forum thread that Patrick referenced was a little more help. After a little more searching I found a post somewhere which made me look at the NameCtrl Class add-on in Internet Explorer. As you can see in the image below, the version was 14.0.6109.5000. Wait, 14??? I’m running Office 2013 on my laptop, so by all rights that version number ought to start with 15.
Looking at the “More Information” link for the add-on, I could see that the date for the Name.DLL files was Tuesday, August 09, 2011, which also didn’t sound right.
Here’s all of the info in text, for better search engine indexing:
Name: NameCtrl Class
Publisher: Microsoft Corporation
Type: ActiveX Control
Architecture: 32-bit
Version: 14.0.6109.5000
File date: Tuesday, August 09, 2011, 6:14 PM
Date last accessed: Today, November 27, 2013, 4 minutes ago
Class ID: {E18FEC31-2EA1-49A2-A7A6-902DC0D1FF05}
Use count: 8439
Block count: 7
File: NAME.DLL
Folder: C:\Program Files (x86)\Microsoft Office\Office14
Patrick’s post recommended running repair on the Office installation, which certainly seemed like a good idea because I seemed to have some bits which were out of date somehow.
I haven’t needed to d a repair on Office 2013 before, and I couldn’t find it! More Bingling ensued, and I realized that it was available in the Windows 7 Control Panel under Programs and Features. (Yes, I’m still running Windows 7.)
Clicking on Change brought up the dialog where I could select Repair.
After some chugging and churning, the repair was done and I went back to Internet Explorer to look at the NameCtrl Class add-on.
Et voila! The version was comfortably in the 15 range at 15.0.4420.1017 and the date was Monday, October 01, 2012.
Name: NameCtrl Class
Publisher: Microsoft Corporation
Type: ActiveX Control
Architecture: 32-bit
Version: 15.0.4420.1017
File date: Monday, October 01, 2012, 9:32 PM
Date last accessed: Today, November 27, 2013, 3 minutes ago
Class ID: {E18FEC31-2EA1-49A2-A7A6-902DC0D1FF05}
Use count: 8446
Block count: 7
File: NAME.DLL
Folder: C:\Program Files (x86)\Microsoft Office\Office15
Even better, the presence indicators work fine now!
Fix Internet Explorer Crashes with SharePoint 2013 Online Presence Indicators的更多相关文章
- SharePoint 2013 Step by Step—— How to Upload Multiple Documents in Document Library
How to Upload Multiple documents in SharePoint 2013,Options to add multiple files in a document libr ...
- 在IE11下设置SharePoint Server 2013却遇到“需要 Internet Explorer 才能使用此功能。”的解决办法
就在昨天顺利升级到Windows 8.1 随之IE也升级到了IE11,但是当打开IE11设置SharePoint Server 2013的时候遇到了一些小情况: Figure 1使用Windows 8 ...
- Fix SharePoint 2013 Site in Read only mode after an interrupted backup
Problem When I was backing up SharePoint Site Collection Automatically with PowerShell and Windows T ...
- Integrating SharePoint 2013 with ADFS and Shibboleth
Time again to attempt to implement that exciting technology, Federation Services (Web Single Sign On ...
- office 365 Sharepoint 2013
平台环境: office 365 Sharepoint 2013 操作文件和文件夹 访问文档库的最佳方式是借助在 /_api/web 处可用的 GetFolderByServerRelativeUr ...
- SharePoint 2013 搭建app本地开发环境
使用SharePoint App,如果要通过应用程序目录分发 SharePoint 相关应用程序,如具有完全控制权限的 SharePoint 相关应用程序(无法部署到 Office 365 网站),则 ...
- SharePoint 2013 文档上传的多种形式
SharePoint 2013 中的某些功能需要使用 ActiveX 控件.这会在不支持 ActiveX 的浏览器上产生限制.目前只有 32 位版本的 Internet Explorer 支持此功能. ...
- [转]安装SharePoint 2013时安装AppFabric失败(错误码:1603)
转自:http://blogs.technet.com/b/praveenh/archive/2013/02/22/sharepoint-2013-prerequisites-fails-with-m ...
- [转]Installing SharePoint 2013 on Windows Server 2012 R2
转自:http://www.avivroth.com/2013/07/09/installing-sharepoint-2013-on-windows-server-2012-r2-preview/ ...
随机推荐
- 【Android】设备标识
Android系统以及设备都有很多的“标识”号,比如常见的IMEI,SerizalNumber,UUID等概念,但是这些都存在一定程度上的不可靠性,到底如何标记一台Android设备? 文章内容多来自 ...
- easyui 键盘控制tree 上下
$.extend($.fn.tree.methods, { highlight: function(jq, target){ return jq.each(function(){ $(this).fi ...
- 纯CSS画的基本图形(矩形、圆形、三角形、多边形、爱心、八卦
http://css-tricks.com/examples/ShapesOfCSS/
- 理解js中的自由变量以及作用域的进阶
如果你不知道什么是作用域,建议你先看什么是作用域链,什么是原型链.这篇文章,因为这些内容都是有关联性的. 什么是自由变量? 如我在全局中定义了一个变量a,然后我在函数中使用了这个a,这个a就可以称之为 ...
- java中反射机制通过字节码文件对象获取字段和函数的方法
pclass = Class.forName("get_class_method.Person"); //Field ageField = pclass.getField(&quo ...
- The Linux Process Principle,NameSpace, PID、TID、PGID、PPID、SID、TID、TTY
目录 . 引言 . Linux进程 . Linux命名空间 . Linux进程的相关标识 . 进程标识编程示例 . 进程标志在Linux内核中的存储和表现形式 . 后记 0. 引言 在进行Linux主 ...
- Python 3.x自定义迭代器对象
Python 3.x与Python 2.x之间存在着较多的语法细节差异.今天在看Python核心编程的时候,说到了自定义迭代器对象.于是动手将源码打了一遍,原书代码如下: class AnyIter( ...
- 移动端手势库Hammer.js学习
感觉移动端原生支持的 touch.tap.swipe 几个事件好像还不够用,某些时候还会用到诸如缩放.长按等其他功能. 近日学习了一个手势库 Hammer.js,它是一个轻量级的触屏设备手势库,能识别 ...
- 【Win10】让 AppBarButton 支持更复杂的 Icon 内容
最近有一个需求,需要制作这么一个 AppBarButton: 这个 AppBarButton 的 Icon 是一个评论框图标里面再显示评论数(大于 99 条则显示 99+).其中评论数是通过数据绑定得 ...
- Winform开发框架主界面设计展示
做了好多年Winform的程序的开发,主窗口的界面设计一般都要求做的更好一些,可以根据不同的系统功能模块进行归类整合,能使客户迅速寻找到相关功能的同时,也能感觉到整体性的美观大方,因此主窗口的界面设计 ...