Dependency Walker with kernel32.dll on Windows 10

Windows 10Dependency Walker

Windows 10 Problem Overview


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.

Windows 10 Solutions


Solution 1 - Windows 10

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.

Solution 2 - Windows 10

There's a reimplementation of dependency walker that is meant to implement for the later features of the dll mechanisms. Have a look at

https://github.com/lucasg/Dependencies

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAshView Question on Stackoverflow
Solution 1 - Windows 10Ofek ShilonView Answer on Stackoverflow
Solution 2 - Windows 10Johan LundbergView Answer on Stackoverflow