tags:

views:

37

answers:

3

Ctrl-A allows to save a report only for a single executable. Thanks

+1  A: 

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
...
Michael Petrotta
A: 

You can always write your own code to do it. This example from microsoft shows you everything you need to know.

Goz
A: 

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?

Agent_9191