I cant locate HKEY_CLASSES_ROOT\AppID\{F72671A9-012C-4725-9D2F-2A4D32D65169}

hester , ethan 21 Reputation points
2021-12-03T19:23:27.477+00:00

Hi, so i keep getting application crashes only on specific games that im playing. Some games run totally smooth and others wont run at at all, in the system logs in event viewer im getting this error

The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
{2593F8B9-4EAF-457C-B68A-50F6B8EA6B54}
and APPID
{15C20B67-12E7-4BB6-92BB-7AFF07997402}
to the user DESKTOP-G6L2BMO\ethan SID (S-1-5-21-418468263-4133558824-16890343-1001) from address LocalHost (Using LRPC) running in the application container Unavailable SID (Unavailable). This security permission can be modified using the Component Services administrative tool.

I have been trying to follow guides to go into the APPID folder in the regedit and change permisssions but unfortunatly i cannot locate the APPID folder or the CLSID folder. any help would be appreciated.

Only sometimes this error comes across as well when the application crashes
Display driver nvlddmkm stopped responding and has successfully recovered.

also sometimes i get this error log as well

The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
{2593F8B9-4EAF-457C-B68A-50F6B8EA6B54}
and APPID
{15C20B67-12E7-4BB6-92BB-7AFF07997402}
to the user DESKTOP-G6L2BMO\ethan SID (S-1-5-21-418468263-4133558824-16890343-1001) from address LocalHost (Using LRPC) running in the application container Unavailable SID (Unavailable). This security permission can be modified using the Component Services administrative tool.

Windows App SDK
Windows App SDK
A set of Microsoft open-source libraries, frameworks, components, and tools to be used in apps to access Windows platform functionality on many versions of Windows. Previously known as Project Reunion.
747 questions
Windows API - Win32
Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
2,499 questions
{count} votes

Accepted answer
  1. Dave Patrick 426.4K Reputation points MVP
    2021-12-03T19:39:34.42+00:00

    It is in
    Computer\HKEY_CLASSES_ROOT\AppID

    not
    Computer\HKEY_LOCAL_MACHINE

    but much simpler to find is to cursor at top of regedit tree, cntrl-C copy the string, then in registry editor cntrl-F, cntrl-V, and enter

    --please don't forget to upvote and Accept as answer if the reply is helpful--


6 additional answers

Sort by: Most helpful
  1. Dave Patrick 426.4K Reputation points MVP
    2021-12-03T19:30:48.35+00:00

    Appears to be the PerAppRuntimeBroker

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    154800-image.png


  2. Dave Patrick 426.4K Reputation points MVP
    2021-12-03T20:20:23.807+00:00

    What do you recommend i do, Try and change the permissions? you are a huge help man! Im in school to be a system admin and people like you who help are what makes me strive to learn more knowledge.

    could not comment above because of Q&A 600 char limit for comments.

    As an example

    The machine-default permission settings do not grant Local Activation permission for the COM Server application with CLSID
    {C2F03A33-21F5-47FA-B4BB-156362A2F239}
    and APPID
    {316CDED5-E4AE-4B15-9113-7055D84DCC97}
    to the user DELL7750\DSPat SID (S-1-5-21-2388488700-1230535514-3637258985-1001) from address LocalHost (Using LRPC) running in the application container Microsoft.Windows.ShellExperienceHost_10.0.19041.1023_neutral_neutral_cw5n1h2txyewy SID (S-1-15-2-155514346-2573954481-755741238-1654018636-1233331829-3075935687-2861478708). This security permission can be modified using the Component Services administrative tool.

    • Open the registry editor as an administrator and navigate to HKEY_CLASSES_ROOT\CLSID{C2F03A33-21F5-47FA-B4BB-156362A2F239}. If you are in the right location, you also see the APPID as a value. Remember the application name you can see in the Data column, the corresponding Name column shows (Default). App name
    • Right click the {C2F03A33-21F5-47FA-B4BB-156362A2F239} and click Permissions, then choose Advanced.
    • In the advance security setting window, click Change and type your administrator account. Then click OK.
    • In the "Permissions for..." windows, select the Administrators and activate the Full Permissions checkbox.
    • Repeat step 1 to 4 to add permissions for APPID{316CDED5-E4AE-4B15-9113-7055D84DCC97}.
    • Open Component Services as administrator. Navigate to Component Services\Computers\My Computer\DCOM Config. Find the application by application name remembered in step 1 and right click the Properties.
    • Go to the Security tab, choose the appropriate action. You can choose Launch and Activation Permissions, set to Customize, and Edit.
    • Click the name that applies to you (in my example it is DELL7750\DSPat) and click the appropriate permission.

  3. Dave Patrick 426.4K Reputation points MVP
    2021-12-04T15:03:24.91+00:00

    Another thing to try via this PowerShell module (script credits go to Tony Pombo MCP)

    download the attached DCOMPermissions.txt and rename it to DCOMPermissions.psm1, place it in C:\

    Make sure (in your example) the PSM1 was in root of C:\ and that PS prompt was also at C:\

    and as example for the 10016 error;

    The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
    {2593F8B9-4EAF-457C-B68A-50F6B8EA6B54}
    and APPID
    {15C20B67-12E7-4BB6-92BB-7AFF07997402}
    to the user DESKTOP-G6L2BMO\ethan SID (S-1-5-21-418468263-4133558824-16890343-1001) from address LocalHost (Using LRPC) running in the application container Unavailable SID (Unavailable). This security permission can be modified using the Component Services administrative tool.

    Windows PowerShell  
    Copyright (C) 2016 Microsoft Corporation. All rights reserved.  
      
    PS C:\Users\Administrator.DSPATRICK> cd \  
    PS C:\> Import-Module .\DCOMPermissions.psm1  
    PS C:\> Grant-DCOMPermission -ApplicationID "{15C20B67-12E7-4BB6-92BB-7AFF07997402}" -Account "DESKTOP-G6L2BMO\ethan" -Type Launch -Permissions LocalLaunch,LocalActivation -OverrideConfigurationPermissions  
    PS C:\>  
    

  4. Dave Patrick 426.4K Reputation points MVP
    2021-12-04T20:46:11.96+00:00

    Well put it anywhere you like, just navigate the PS prompt to same location so the import succeeds.

    0 comments No comments