Reputation: 13068
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
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