Hi
Welcome to Microsoft community.
The lsass.exe process is responsible for security policy enforcement within the operating system and verifies users logging on to a Windows computer or server, handles password changes, and creates access tokens.
The registry key you mentioned,
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Rpc\SecurityService\DefaultAuthLevel
is related to the default authentication level for Remote Procedure Call (RPC), which is a protocol that one program can use to request a service from a program located on another computer on a network.
The DWORD values you mentioned correspond to the different authentication levels for DCOM. Here's what each value represents:
- 1: None
- 2: Connect
- 3: Call
- 4: Packet
- 5: Packet Integrity
- 6: Packet Privacy
Setting DefaultAuthLevel to 1 (None) basically means no authentication is required, while 6 (Packet Privacy) requires the highest level of authentication.
The fact that lsass.exe is constantly querying this path could be normal, especially if you have applications that heavily use DCOM or RPC. However, if you're noticing performance issues, it might be worth investigating further.
Disclaimer: Generally, modifying registry subkeys or work group is intended for advanced users, administrators, and IT Professionals. It can help fix some problems, however, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For further protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click
How to back up and restore the registry in Windows - Microsoft Support to view the article.
Best regards
Derrick Qian | Microsoft Community Support Specialist