How to get a list of all processes including DLLs they use using Process Monitor?
Ctrl-A allows to save a report only for a single exe开发者_JS百科cutable. Thanks
Try the Sysinternals command-line tool handle:
C:\>handle .dll
Handle v3.31
Copyright (C) 1997-2008 Mark Russinovich
Sysinternals - www.sysinternals.com
System pid: 4 6D8: C:\Windows\System32\msvcrt.dll
System pid: 4 6F0: C:\Windows\System32\oleaut32.dll
...
You can always write your own code to do it. This example from microsoft shows you everything you need to know.
Why not just use the built in commands at the command line and export it to a file, like the following tasklist /M > ModulesForProcesses.txt
?
精彩评论