Search code examples
c#mutexthread-synchronization

Find named mutexes in an C# application


How do I find the named mutexes in an running C# application, provided I do not have the source code of that application?


Solution

  • The Process Explorer utility from SysInternals can list the handles in use by a process; some of those handles might be named mutexes, which you can then examine.