To determine which processes have loaded a particular DLL.
From MS code sample here: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682621%28v=vs.85%29.aspx
enum-modules-win.exe Version 1.2This tool queries the loaded modules of running processesUsage:enum-modules-win.exe --list : Lists all running processes and their loaded modulesenum-modules-win.exe --pid
: Lists all loaded modules of the process with the pid specified in (e.g. 1234)enum-modules-win.exe --name : Lists all loaded modules of the process with the name specified in (e.g. explorer.exe)enum-modules-win.exe --pid : Checks if the process with pid has module with name loaded Returns with exit code 0 when loaded and exit code 1 if not loadedenum-modules-win.exe --name : Checks if the process with name &l