Help and Support

Article ID: 931509 - Last Review: February 17, 2009 - Revision: 3.0

Message in the Information bar in Internet Explorer 7 when you browse to a Windows SharePoint Services 3.0 site or to a SharePoint Server 2007 site: "The Web site wants to run the following add-on: 'Name ActiveX Control'"

Expand all | Collapse all

SYMPTOMS

Consider the following scenario. You use Windows Internet Explorer 7 to browse to a Microsoft Windows SharePoint Services 3.0 site or to a Microsoft Office SharePoint Server 2007 site. The SharePoint site is located in the Internet zone. Additionally, the SharePoint site has online presence enabled. When you browse to the SharePoint site, you receive the following message in the Information bar in Internet Explorer 7:
The Web site wants to run the following add-on: 'Name ActiveX Control' from 'Microsoft Corporation'. If you trust the Web site and the add-on and want to allow it to run, click here...

CAUSE

This issue occurs if the Name ActiveX control (Name.dll) is not added to the list of preapproved controls in Internet Explorer 7. The Name ActiveX control is included in the 2007 Microsoft Office system.

WORKAROUND

To work around this issue, use one of the following methods, as appropriate for your situation.

Method 1: Add the SharePoint site to the Trusted Sites list in Internet Explorer 7 on the Windows client computer

Add the SharePoint site to the Trusted Sites in Internet Explorer 7 on the Microsoft Windows client computer. To do this, follow these steps:
  1. Start Internet Explorer 7.
  2. On the Tools menu, click Internet Options, and then click the Security tab.
  3. Click Trusted sites, and then click Sites.
  4. In the Trusted sites dialog box, type the URL of the SharePoint site in the Add this website to the zone box, and then click Add.
  5. Click Close, and then click OK.

Method 2: Configure the master page of the SharePoint site on the front-end Web server

If the SharePoint site does not require online presence, configure the master page of the SharePoint site to use the InitNoPresence.js file. To do this, follow these steps:
  1. Create the InitNoPresence.js file. To do this, follow these steps:
    1. Copy the contents of the Init.js file to the InitNoPresence.js file on the front-end Web server.

      Note The Init.js file is located in the Drive:\Program Files\Common Files\Microsoft Shared\Web server extensions\12\Template\Layouts\1033 folder.
    2. Start Notepad, and then open the InitNoPresence.js file.
    3. In the InitNoPresence.js file, locate the following line of code.
      function ProcessImn()
      {
             if (EnsureIMNControl() && IMNControlObj.PresenceEnabled)
             {
                    imnElems=document.getElementsByName("imnmark");
                    imnElemsCount=imnElems.length;
                    ProcessImnMarkers();
             }
      }
      function ProcessImnMarkers()
      {
             for (i=0;i<imnMarkerBatchSize;++i)
             {
                    if (imnCount==imnElemsCount)
                           return;
                    IMNRC(imnElems[imnCount].sip,imnElems[imnCount]);
                    imnCount++;
             }
             setTimeout("ProcessImnMarkers()",imnMarkerBatchDelay);
      }
    4. In the InitNoPresence.js file, replace the code that you located in step 1c with the following line of code.
      //function ProcessImn()
      {
             if (EnsureIMNControl() && IMNControlObj.PresenceEnabled)
             {
                    imnElems=document.getElementsByName("imnmark");
                    imnElemsCount=imnElems.length;
                    ProcessImnMarkers();
             }
      }
      //function ProcessImnMarkers()
      {
             for (i=0;i<imnMarkerBatchSize;++i)
             {
                    if (imnCount==imnElemsCount)
                           return;
                    IMNRC(imnElems[imnCount].sip,imnElems[imnCount]);
                    imnCount++;
             }
             setTimeout("ProcessImnMarkers()",imnMarkerBatchDelay);
      }
      
  2. Configure the master page of the SharePoint site to use the InitNoPresence.js file. To do this, follow these steps:
    1. Start Microsoft Office SharePoint Designer 2007. Then, open the master page for the SharePoint site.
    2. In the master page, locate the following line of code.
      <SharePoint:ScriptLink language="javascript" name="init.js" runat="server"/>
    3. Replace the line that you located in the step 2b with the following line of code.
      <SharePoint:ScriptLink language="javascript" name="initNoPresence.js" runat="server"/>
      
      
    Note In some cases, the problem is not solved when you create the custom InitNoPresence.js file. If this solution does not work, make the changes directly in the Init.js file. Before you do this, make a backup copy of Init.js in case a hotfix overrides the Init.js file.

APPLIES TO
  • Microsoft Office SharePoint Server 2007
  • Microsoft Windows SharePoint Services 3.0
  • Windows Internet Explorer 7 for Windows XP
  • Windows Internet Explorer 7 for Windows Server 2003
  • Windows Internet Explorer 7 in Windows Vista
Keywords: 
kbregistry kbprb kbtshoot kbexpertiseinter KB931509

Article Translations