For some reason I frequently encounter these DCOM errors on servers running SharePoint Services:
Log Name: System
Source: Microsoft-Windows-DistributedCOM
Date: 25.05.2008 15:50:23
Event ID: 10016
Task Category: None
Level: Error
Keywords: Classic
User: NETWORK SERVICE
Computer: server.domain.com
Description:
The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID {61738644-F196-11D0-9953-00C04FD919C1} to the user NT AUTHORITYNETWORK SERVICE SID (S-1-5-20) from address LocalHost (Using LRPC). This security permission can be modified using the Component Services administrative tool.
If you see an error like this follow these steps to fix it:
- Figure out which COM Server application that is the problem. Run this command:
reg query HKCRAppID<COM Server GUID from Event log entry>
In this case the command would be:
reg query HKCRAppID{61738644-F196-11D0-9953-00C04FD919C1}
HKEY_CLASSES_ROOTAppID{61738644-F196-11D0-9953-00C04FD919C1}
(Default) REG_SZ IIS WAMREG admin Service
LocalService REG_SZ IISADMIN
AuthenticationLevel REG_DWORD 0x6 - Open up the Component Services tool; dcomcnfg.exe
- Expand Component ServicesComputersMy ComputerDCOM Config
- Locate the failing component in the list, either by name or GUID, and select Properties.
- Open the Security tab.
- Depending on your error select Launch and Activation Permissions (as in this example), Access Permissions or Configuration Permissions.
- Add the required permissions:
- Hit OK twice to return to the Component Service tool.
The error should now be resolved.
Where do we run this command from?
Run this command:
reg query HKCRAppID
From the Windows commmand line (cmd.exe)
Morgan, thanks for the info. My failing component is the:
Microsoft.SqlServer.Dts.Server.DtsServer
{46063B1E-BE4A-4014-8755-5B377CD462FC}
Source: Distributed COM
Event ID: 10016
But I cannot find it in the DCOM Config anywhere.
Would you have any tips?
Thanks