Is it possible to pass Windows HLK test for drivers compiled with WDK7.1

夙愿已清 提交于 2019-12-06 07:31:22

The answer is Yes.

The best thing you can do is just compile your drivers using wdk10 using VS2015 keep target OS as windows7 install it on windows10 and test it using HLK.

Or secondly you know that drivers are forward compatible if they are compiled for windows 7 they will work on windows 8.1 or windows 10 as well.

You just install your wdk7.1 compiled drivers on windows 10 OS. Then setup the client server for HLK and put the test for windows 10. After that whichever tests fails just read the errors and solve them.

Some modifications will be there if you want to give support for windows 10 OS Ex: NonPagedPool should be replaced with NonPagedPoolNx etc.

But yes you need to change the code according to errors you are getting on test fails and fix them on your own there is no easy way.

Yup there will be lot of work but that is possible for sure, I have done that for PCI serial port drivers.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!