pencilslate
pencilslate

Reputation: 13068

how to track dlls being loaded into a process?

I am looking for a tool to trace the dlls being loaded into a process on windows. The app i have is loading managed and unmanaged dlls, but not sure if the managed ones are loading the unmaanged ones. Process Explorer and File Explorer doesn't seem to help much. Any thoughts?? thanks!!

Upvotes: 2

Views: 7076

Answers (2)

Buggieboy
Buggieboy

Reputation: 4696

As of version 2.0, Dependency Walker can do dynamic application profiling. This allows you to see what modules a running application is loading, as opposed to just seeing what is in the static import tables.

Upvotes: 2

bosmacs
bosmacs

Reputation: 7483

Procmon is the best tool I know of, though its level of detail can be overwhelming.

Upvotes: 1

Related Questions