What is the equivalent of Linux's ldd on windows?
问题 What is the equivalent of Linux's ldd on Windows? 回答1: Here is Dependency Walker. http://dependencywalker.com/ 回答2: or the GNU tool : i586-mingw32msvc-objdump -p *.exe | grep 'DLL Name:' 回答3: The dumpbin command can be useful for many things, although in this case dependency walker is probably a little more verbose. dumpbin /dependents some.dll 回答4: PowerShell can do this PS > Start-Process -PassThru calc.exe | Get-Process -Module Size(K) ModuleName ------- ---------- 908 calc.exe 1700 ntdll