Get a list of mutex?

主宰稳场 提交于 2019-12-02 23:35:04

If you're on Windows, WinObj can show you named mutexes. Or you can use Process Explorer to find out which objects a specific process has open.

If you have WinObj.exe it is likely that you also have handle.exe which is also from the SysInternals-Suite.

Occasionally I found

handle -a |findstr /C:Mutant /C:pid:

to be helpful. This also displays unnamed Mutexes.

BTW: If you dont want to rely on the output format compatibility (I used version v3.51) you should capture the whole output of handle -a and search manually or use

handle -a -p %YOUR_PID%
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!