Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any way to find the dynamic dependency of an exe (application).
I know by using 'profiling' option in DepedencyWalker we can get dynamic dependency. But it requires to start the application using DependencyWalker.

But my application is started in a different way. Starting the application using DepWalker will not invoke the steps to load the dlls.

Is there any other way to find the dependency? (Function level information is also needed)

What I have tried:

I have tried using DepedencyWalker. But if my application is started using DepWalker, it will not load the dlls.

Is there any application which hooks and gets information about LoadLibrary and GetPRocAddress ??
Posted
Updated 21-Nov-20 11:39am

1 solution

What about launching the application with Process Monitor? The Process Monitor utility makes a log of events from the application activity - DLL accessed, registry accesses, file accesses, etc. That can help you to know which DLL are being loaded. I don't think you get the functions, however.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900