What programs/applications can I run on a Windows executable to find all the DLLs that it depend on or uses?
What programs/applications can I run on a Windows executable to find all the DLLs
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A classic one is the Dependency Walker.
It lists all the statically-imported dlls (and the functions that are actually used) and the delayload dlls; also, running the program it can provide you a list of the dynamically-loaded (as in LoadLibrary) dlls and the used entrypoints (if retrieved via GetProcAddress).