Dependency Walker with kernel32.dll on Windows 10

Ash picture Ash · Nov 9, 2015 · Viewed 56.8k times · Source

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: Error reading dependency

I'm running Windows 10 32-bit, and the Dependency Walker is also 32-bit. Also, I'm running Dependency Walker as admin.

Answer

Ofek Shilon picture Ofek Shilon · Mar 27, 2016

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 can't handle API sets properly.

So these are all false negatives and nothing to worry about. You're not missing anything.

Here it is in more words.


Edit: Only in Oct 2017 did someone finally try to fill this gap. Meet Dependencies by lucasg. I've only briefly fiddled with it until now, but it handles API sets well and is at least very worthy of attention.