SharePoint: Solving the name.dll ActiveX problem – the easy way
It is possible to solve name.dll issue in SharePoint without modifying JavaScript files.
- Open master page in SharePoint Designer.
- Find the following line:
<asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server"/>
- Add the following script block after it:
<script>
function ProcessImn() {}
</script>
- Check the master page in and publish it.
This solution worked well for me using BlueBand.master. I think it is not an good idea to modify script files as SharePoint updates may also update the scripts.