I’ve been experiencing a confusing error message on one of our servers recently which seems to be occurring every minute or so. It took me a while to track down the solution so I just wanted to share it in the hope that it may help others. The error itself is:
“The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
{61738644-F196-11D0-9953-00C04FD919C1}
and APPID
{61738644-F196-11D0-9953-00C04FD919C1}
to the user xxxx SID (S-1-5-21-2253663647-1569451007-2477840854-1675) from address LocalHost (Using LRPC). This security permission can be modified using the Component Services administrative tool.”
where xxxx is the username which I have blanked out for obvious reasons. I found a solution to this however the options were blanked out – a comment revealed a link to aid this solution, the entirety of which I shall detail below:
- Open Registry Editor (Start -> Run -> regedit -> OK)
- Open the search box (Ctrl F)
- Copy and paste the key reporting the error, in our case: 61738644-F196-11D0-9953-00C04FD919C1
- Right click the key and select Permissions
- Click Advanced
- Select the Owner tab
- Change ownership to the Administrators group (ensuring that you are logged in as an administrator that is part of this group)
- Select the Permissions tab
- Give the Administrators group full control
- Click OK
- Click OK
- Open Component Services (Start -> Administrative Tools -> Component Services)
- Expand Component Services
- Expand Computers
- Expand My Computer
- Expand DCOM Config
- Scroll down to IIS WAMREG admin service and right click on it
- Select Properties
- Select the Security tab
- Check the Customize radio button *under “Launch and Activation”) and then select Edit
- Add in your service account (preferably an account dedicated to SQL Server for SharePoint) and give it the appropriate permissions (probably Local Launch and Local Activation, but possibly also Remote Launch and Remote Activation if these alone do not work)
- Restart IIS
I found these solutions at http://www.wictorwilen.se/Post/Fix-the-SharePoint-DCOM-10016-error-on-Windows-Server-2008-R2.aspx and http://social.msdn.microsoft.com/Forums/en-US/tfsadmin/thread/883b5f1c-1718-4b9a-a6c8-bf32c5d4d6d2/ so thanks to those for providing them. Hopefully my post can get the message out further.