vote up 3 vote down star

If I have a Windows executable, how can I find out which dlls it will load?

I'm just talking about which ones that will be loaded statically, not ones it might load dynamically with something like LoadLibrary.

flag

60% accept rate

5 Answers

vote up 6 vote down check

There are utilities that will do this for you.

In the past I've used the MS tool (depends.exe) that came with (I think) VB.:
http://msdn.microsoft.com/en-us/library/8kche8ah(VS.71).aspx

and there's this as well:
http://dependencywalker.com/

and probably others as well.

link|flag
vote up 2 vote down

dumpbin is a tool that comes with VC++. To see what functions (and DLLs) it will import, use

C:\> dumpbin /imports whatever.exe
link|flag
I believe it should be: dumpbin /dependents whatever.exe – DebuggingNow Mar 19 at 1:53
/dependents only shows you the DLLs. /imports shows you functions and DLLs. – Graeme Perrow Mar 19 at 16:46
vote up 1 vote down

Dependency Walker can help you determine which .dll will be loaded.

link|flag
vote up 1 vote down

There is a handy tool called NDepend that will give you all DLL dependencies.

link|flag
vote up 0 vote down

progfr is simple and useful: [http://members.fortunecity.com/michaelmoser/tip11.htm]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.