tags:

views:

32

answers:

4

please forgive my windows ignorance,

Is there an application which can show me which dlls an executable is attempting to use (name, path)

I'm assuming this can be done via static analysis of executable and/or when the executable is running by examining system calls

A: 

Dependency Walker.

Joey
quickest to answer gets the points
bandana
A: 

Use process monitor

redsquare
I'm a fan of SysInternals too - the Swiss Army Chainsaw collection of tools that should have been included with Windows from the start. But I admit that Dependency Walker is probably the more luxurious solution for this special purpose.
Carl Smotricz
@Carl Smotricz never used it, sysInternals always been enough for me but I will have a look at dep walker
redsquare
+1  A: 

Dependency walker

It's fabulous, and lets you see the hierarchy of dependent DLL's. It also shows you functions that the DLL exports. I've even used it to solve mysterious Error 127 problems.

http://www.dependencywalker.com/

C Johnson
+1  A: 

Try Dependency Walker.

Dependency Walker is a free utility that scans any 32-bit or 64-bit Windows module (exe, dll, ocx, sys, etc.) and builds a hierarchical tree diagram of all dependent modules. For each module found, it lists all the functions that are exported by that module, and which of those functions are actually being called by other modules. Another view displays the minimum set of required files, along with detailed information about each file including a full path to the file, base address, version numbers, machine type, debug information, and more.

gimel