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...
Back to the top
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.
Back to the top
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: Add a registry subkey to the Windows client computer
Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge Base:
322756 (http://support.microsoft.com/kb/322756/) How to back up and restore the registry in Windows
Note Because there are several versions of Microsoft Windows, the following steps may be different on your computer. If they are, see your product documentation to complete these steps.
Add the {E18FEC31-2EA1-49A2-A7A6-902DC0D1FF05} registry subkey to the following registry subkey on the Windows client computer:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Ext\PreApproved
To do this, follow these steps:
| 1. | Click Start, click Run, type regedit in the Open box, and then click OK. |
| 2. | Locate and then click the following registry subkey: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Ext\PreApproved |
| 3. | On the Edit menu, point to New, and then click Key. |
| 4. | Type {E18FEC31-2EA1-49A2-A7A6-902DC0D1FF05}, and then press ENTER. |
| 5. | On the File menu, click Exit to exit Registry Editor. |
Method 3: 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:| a. | 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. | | b. | Start Notepad, and then open the InitNoPresence.js file. | | c. | 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);
} | | d. | 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:| a. | Start Microsoft Office SharePoint Designer 2007. Then, open the master page for the SharePoint site. | | b. | In the master page, locate the following line of code. <SharePoint:ScriptLink language="javascript" name="init.js" runat="server"/> | | c. | 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. |
Back to the top