zoukankan      html  css  js  c++  java
  • The applicationspecific permission settings do not grant Local Launch permission for the COM Server application

    Event 10016: The application-specific permission settings do not grant Local Launch permission for the COM Server application
    Mar 29th, 2008 by Christian.
    On our Sharepoint server, the following DCOM error message kept returning in the event log (bold text is Event ID-specific information):

    —————
    Event Type: Error
    Event Source: DCOM
    Event Category: None
    Event ID: 10016
    Date: Date
    Time: Time
    User: NT AUTHORITY\NETWORK SERVICE
    (there may be situations in which the user is NT AUTHORITY\LOCAL SERVICE)

    Description: The application-specific permission settings do not grant Local Launch permission for the COM Server application with CLSID {AppGUID} to the user User_Name SID User_SID. This security permission can be modified using the Component Services administrative tool.
    —————

    The solution for this DCOM error is to grant the affected user permissions to start the COM component. To solve event ID 10016, follow these steps:

    Go to Start - Run, and type regedit, and press enter
    Locate and then click the following registry subkey:
    HKEY_CLASSES_ROOT\CLSID\CLSID value
    Note In this subkey, “CLSID value” is a placeholder for the CLSID information that appears in the event error. I.e. in case of Sharepoint, the CLSID would be {61738644-F196-11D0-9953-00C04FD919C1},
    Double-click on AppID in the right pane, .
    A dialog box appears. Leave this box open
    Go to Start - Run, and type dcomcnfg, and press enter
    In the Component Services window, go to Component Services, go to Computers, go to My Computer, and then click DCOM Config.
    In the details pane, locate the program by using the friendly name, then choose Properties by right clicking on it
    At the Security tab, in the Launch and Activation Permissions area, click Customize, and then click the Edit button.
    Add the Local Service or Network Service account by clicking the Add button, typing the user’s account name (Local Service or Network Service, this depends on whats in your event error), and then clicking OK.
    Select the account name you just added, click to select the Allow check boxes for the following items:
    • Local Launch
    • Remote Launch
    • Local Activation
    • Remote Activation
    Click OK two times and quit the registry editor

  • 相关阅读:
    快速排序中的partition函数的枢纽元选择,代码细节,以及其标准实现
    并发包的线程池第二篇--Executors的构造
    并发包的线程池第一篇--ThreadPoolExecutor执行逻辑
    Servlet学习笔记
    npm + webpack +react
    取消eclipse启动时的subclipse Usage弹窗
    关于webpack最好的文档
    WebStorm2016.1 破解 激活
    微信web调试工具
    webstorm下设置sass
  • 原文地址:https://www.cnblogs.com/dimg/p/1346396.html
Copyright © 2011-2022 走看看