Search code examples
windowsvisual-studiodriverwdkwdf

Can't compile windows driver - Signability test fails for windows driver


I'm trying to create a very simple windows driver, the problem is that I can't get to compile it, visual studio keeps giving me the following error:

kmd\kmd.inf does not have NTAMD64 decorated model sections.

What's causing this problem and how do I fix this?


Solution

  • Look like your INF file may be missing the .ntamd64 section. Please take a look at the following Microsoft documentation: https://learn.microsoft.com/en-us/windows-hardware/drivers/install/inf-file-platform-extensions-and-x64-based-systems

    Hope this helps!