开发者

How to get a list of all processes including DLLs they use using Process Monitor?

开发者 https://www.devze.com 2022-12-13 09:11 出处:网络
Ctrl-A allows to save a report only for a single exe开发者_JS百科cutable. ThanksTry the Sysinternals command-line tool handle:

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?

0

精彩评论

暂无评论...
验证码 换一张
取 消