How to determine a windows executables DLL dependencies programmatically?

后端 未结 6 2153
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 05:08

How to determine what DLL\'s a binary depends on using programmatic methods?

To be clear, I am not trying to determine the DLL dependencies of the running exec, bu

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-09 05:58

    Dependency Walker can do this by using the profile menu, if you have a target executable. Simply load the executable, tell it to start profiling, and it'll list all the modules loaded while executing the program.

    Dependency Walker FAQ (first question...)

提交回复
热议问题