Event ID 10016 (DCOM) on Windows 2003 Server Service Pack 1 (SP 1)

来源:互联网 发布:服务器软件包括 编辑:程序博客网 时间:2024/05/07 22:17

Event ID 10016 (DCOM) on Windows 2003 Server Service Pack 1 (SP 1)

After installing Service Pack 1 on a Windows 2003 Server I recieved the following error:

Event ID : 100016
Source : DCOM

The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID

{BA126AD1-2166-11D1-B1D0-00805FC1270E}

to the user NT AUTHORITY/NETWORK SERVICE SID (S-1-5-20). This security permission can be modified using the Component Services administrative tool.

The COM Server application with CLSID has to be tracked down in the
registry, in this case the following reg key:

HKEY_CLASSES_ROOT/CLSID/{BA126AD1-2166-11D1-B1D0-00805FC1270E}

In this key you can acquire the AppID, in this case the following AppID:

{27AF75ED-20D9-11D1-B1CE-00805FC1270E}

The AppID has to be tracked down in the registry, in this case the following
reg key:

HKEY_CLASSES_ROOT/AppID/{27AF75ED-20D9-11D1-B1CE-00805FC1270E}

In this key you can acquire the LocalService name, in the case the following
name:

Netman

The LocalService has to be tracked down in the Component Services MMC; in
this case Netman is listed within the DCOM Config section.

Browse to the Security Tab, edit the Launch and Activation Permissions, and
make necessary changes. In this case, NETWORK SERVICE needed to be added with
Remote Launch and Remote Activation permissions.

大概翻译一下:
安装完2003 sp1后,服务会出现下面的错误:

Event ID : 100016
Source : DCOM

The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID

{BA126AD1-2166-11D1-B1D0-00805FC1270E}

to the user NT AUTHORITY/NETWORK SERVICE SID (S-1-5-20). This security permission can be modified using the Component Services administrative tool.

这时候可以去注册表里寻找这个键值

HKEY_CLASSES_ROOT/CLSID/{BA126AD1-2166-11D1-B1D0-00805FC1270E} 查看 Appid:

{27AF75ED-20D9-11D1-B1CE-00805FC1270E}

然后在HKEY_CLASSES_ROOT/AppID/{27AF75ED-20D9-11D1-B1CE-00805FC1270E}下查看localservice:Netman

寻找对应的服务名称,用以下办法授权即可

开始→控制面板→管理工具→组件服务
打开 组件服务 树目录 →计算机→我的电脑→DCOM配置
右边的面板里 找到 netman 右键→属性→安全→ 启动和激活权限 →自定义→编辑  添加 network service 用户

原创粉丝点击