Intermittent unknown error from Active Directory

前端 未结 2 1603
不知归路
不知归路 2021-02-09 09:29

I\'m using .Net account management libraries to access Active Directory to search the details of current http request user. My app pool runs with custom account and it also from

相关标签:
2条回答
  • 2021-02-09 10:18

    Try to identify what domain server you will use:

    Something like: = new PrincipalContext(ContextType.Domain, "YOURADDOMAIN");

    0 讨论(0)
  • 2021-02-09 10:23

    I worked with a Microsoft Engineer for a long time to fix this so hopefully my solution can help others fix their problems.

    First off the error code 0x80005000 referrers to an invalid ADSI pathname was passed, which wasn’t particularly helpfully.

    We did a lot of tracing which was also not very helpful. Last thing we did was use Process Monitor to trace the Registry.

    When the error occurred, I noticed a HIVE UNLOADED result happened (see screenshot)

    Based on this we also found this error appearing in the event log.

    Log Name:      Application 
    Source:        Microsoft-Windows-User Profiles Service 
    Date:          10/26/2009 8:22:13 AM 
    Event ID:      1530 
    Task Category: None 
    Level:         Warning 
    Keywords:      Classic 
    User:          SYSTEM 
    Computer:      SERVERNAME 
    Description: 
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
    DETAIL - 
    1 user registry handles leaked from \Registry\User\S-1-5-21-1049297961-3057247634-349289542-1004_Classes: 
    Process 2428 (\Device\HarddiskVolume1\Windows\System32\dllhost.exe) has opened key \REGISTRY\USER\S-1-5-21-1123456789-3057247634-349289542-1004_CLASSES
    

    The engineer suggested this article https://support.microsoft.com/en-us/help/2287297/a-com-application-may-stop-working-on-windows-server-2008-when-a-user

    Which seem to fix my problem.

    0 讨论(0)
提交回复
热议问题