dependency-walker

What is the equivalent of Linux's ldd on windows?

旧时模样 提交于 2019-11-30 10:19:05
问题 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

Dependency walker with windows 10

别等时光非礼了梦想. 提交于 2019-11-28 17:12:12
i tried to open kernel32.dll using dependency walker on windows 10. i got the following error and warning: Error: At least one required implicit or forwarded dependency was not found Warning: At least one delay-load dependency module was not found. Screenshot: I'm running windows 10 32Bit, and the dependency walker is also 32Bit. Also, I'm running dependency walker as Admin. This has nothing to do with delay loads. These are MS API-sets - essentially, an extra level of call indirection introduced gradually since windows 7. Dependency walker development seemingly halted long before that, and it

Dependency Walker equivalent for Linux? [duplicate]

泪湿孤枕 提交于 2019-11-28 08:58:14
This question already has an answer here: Hierarchical ldd(1) 4 answers I need a tool to show all the shared library dependencies in some graphical way, not just with ldd on each .so . For MS Windows Dependency Walker works. Is there anything for Linux? . Try binscan or ELF Library Viewer 来源: https://stackoverflow.com/questions/6977298/dependency-walker-equivalent-for-linux

Profiling x86 executable with Dependency Walker hangs on Windows 7 x64

一笑奈何 提交于 2019-11-27 12:26:01
Under Windows 7 x64 , when I try to profile an x86 executable with the latest version of Dependency Walker (2.2.6000) the profiling process always hangs at a certain point. Most of the time the last DLL that is loaded is c:\windows\syswow64\URLMON.DLL , so it seems that something inside that DLL is causing a problem. Profiling the same executable on Windows 7 x86 works flawlessly. I have googled quite extensively, but couldn't come up with a solution to the problem. One suggestion that I found was to uninstall IE 8 or IE 9 and replace it with IE 7, but this doesn't really help. The only effect

Dependency walker with kernel32.dll on windows 10

怎甘沉沦 提交于 2019-11-27 09:59:03
问题 i tried to open kernel32.dll using dependency walker on windows 10. i got the following error and warning: Error: At least one required implicit or forwarded dependency was not found Warning: At least one delay-load dependency module was not found. Screenshot: I'm running windows 10 32Bit, and the dependency walker is also 32Bit. Also, I'm running dependency walker as Admin. 回答1: This has nothing to do with delay loads. These are MS API-sets - essentially, an extra level of call indirection

Dependency Walker equivalent for Linux? [duplicate]

*爱你&永不变心* 提交于 2019-11-27 01:47:12
问题 This question already has an answer here: Hierarchical ldd(1) 4 answers I need a tool to show all the shared library dependencies in some graphical way, not just with ldd on each .so . For MS Windows Dependency Walker works. Is there anything for Linux? . 回答1: Try binscan or ELF Library Viewer 来源: https://stackoverflow.com/questions/6977298/dependency-walker-equivalent-for-linux

Dependency Walker reports IESHIMS.DLL and WER.DLL missing?

喜欢而已 提交于 2019-11-26 18:42:35
On a Windows XP Professional SP3 with Internet Explorer 8 box, when I run Dependency Walker on an executable of mine it reports that: IESHIMS.DLL and WER.DLL can't be found. Do I need these DLL's? Where can I get them? I believe they are supposed to located in C:\Windows\System32\Wer.dll and C:\Program Files\Internet Explorer\Ieshims.dll tyranid ieshims.dll is an artefact of Vista/7 where a shim DLL is used to proxy certain calls (such as CreateProcess ) to handle protected mode IE, which doesn't exist on XP, so it is unnecessary. wer.dll is related to Windows Error Reporting and again is

Profiling x86 executable with Dependency Walker hangs on Windows 7 x64

假如想象 提交于 2019-11-26 15:52:24
问题 Under Windows 7 x64 , when I try to profile an x86 executable with the latest version of Dependency Walker (2.2.6000) the profiling process always hangs at a certain point. Most of the time the last DLL that is loaded is c:\windows\syswow64\URLMON.DLL , so it seems that something inside that DLL is causing a problem. Profiling the same executable on Windows 7 x86 works flawlessly. I have googled quite extensively, but couldn't come up with a solution to the problem. One suggestion that I

Dependency Walker: missing dlls

大兔子大兔子 提交于 2019-11-26 15:21:35
I have been trying to resolve .dll dependencies for the executable file with Dependency Walker . Currently, I am getting missing .dlls in the following form: API-MS-WIN -XXX EXT-MS-WIN -XXX For example: API-MS-WIN-APPMODEL-IDENTITY-L1-2-0.DLL API-MS-WIN-APPMODEL-RUNTIME-INTERNAL-L1-1-0.DLL API-MS-WIN-BASE-UTIL-L1-1-0.DLL API-MS-WIN-CORE-APIQUERY-L1-1-0.DLL EXT-MS-WIN-RTCORE-NTUSER-SYSCOLORS-L1-1-0.DLL Does anybody have any ideas on how to resolve these? Any help will be greatly appreciated! Additional info: I compiled the executable using Visual Studio 2013 . The most interesting thing is that

Dependency Walker reports IESHIMS.DLL and WER.DLL missing?

泪湿孤枕 提交于 2019-11-26 06:35:18
问题 On a Windows XP Professional SP3 with Internet Explorer 8 box, when I run Dependency Walker on an executable of mine it reports that: IESHIMS.DLL and WER.DLL can\'t be found. Do I need these DLL\'s? Where can I get them? I believe they are supposed to located in C:\\Windows\\System32\\Wer.dll and C:\\Program Files\\Internet Explorer\\Ieshims.dll 回答1: ieshims.dll is an artefact of Vista/7 where a shim DLL is used to proxy certain calls (such as CreateProcess ) to handle protected mode IE,