wdf

Where is WDF template after installing wdk?

爷,独闯天下 提交于 2020-01-11 12:34:09
问题 visual studio community 2017 + wdk 10.0.15063.0 + sdk 10.0.15063.137 I installed vs2017 first,and then,the wdk. However I cound't find the WDF template when I try to create a KMDF. Appreciate for any help. 回答1: The WDK Build 15063 for Windows 10 v1703 only supports Visual Studio 2015. So for driver development you have to stay on the older VS2015 until a compatible version is available to be used in VS2017. Starting with WDK Build 16299 for Windows 10 v1709 VS2017 is now the only supported

Why is there no WDM kernel-mode driver template in Windows Driver Kit?

梦想与她 提交于 2019-12-13 03:33:07
问题 I came across kernel-mode drivers with very little experience. Here's what I am trying to do: Have a user-mode application that loads the driver. Have the user-mode application write to it, in order to send it an instruction. Have the driver send the RDMSR instruction to the Intel chip. Return the results back to the user-mode application. I've read this article that describes the different ways in which you can accomplish this behavior (Buffered I/O, Direct I/O, or Neither). My problem is

Installing template for VS 2015 enterprise

守給你的承諾、 提交于 2019-12-13 02:26:00
问题 I have VS 2015, and I also have Windows Driver Kit 10.0 But in VS 2015 Enterprise, I could not find any template to write KMDF related development. I tried to install so search for template for KMDF or WDF but I could not find it. How can I install KMDF template in VS 2015 enterprise edition? thanks 回答1: The solution was easy. I had to install WDK after installing VS 2015, I did that and it worked fine. problem solved. 来源: https://stackoverflow.com/questions/37707656/installing-template-for

Where is WDF template after installing wdk?

一世执手 提交于 2019-12-02 04:17:56
visual studio community 2017 + wdk 10.0.15063.0 + sdk 10.0.15063.137 I installed vs2017 first,and then,the wdk. However I cound't find the WDF template when I try to create a KMDF. Appreciate for any help. The WDK Build 15063 for Windows 10 v1703 only supports Visual Studio 2015 . So for driver development you have to stay on the older VS2015 until a compatible version is available to be used in VS2017. Starting with WDK Build 16299 for Windows 10 v1709 VS2017 is now the only supported option. So if you want to use only VS2017, install the WDK Build 16299/Win10 v1709. If you still have issues,

Driver's uninstall button is disabled

被刻印的时光 ゝ 提交于 2019-12-01 09:36:17
I've written my fairly simple first driver for a virtual device. It also has a .inf and I install the driver using devcon.exe . It install fine and functions properly but my problem is when I try to uninstall it: devcon.exe can't uninstall it and in Device Manager, the Uninstall, Roll Back and Disable buttons for the driver are disabled. My main concern for now is the Uninstall button. My driver implements the DriverObject->DriverUnload . I've look in the msdn docs, and for now I can't find any DDUninstall INF section for drivers. When I look in the %WinDir%\inf\setupapi.app.log I see the

Driver's uninstall button is disabled

时间秒杀一切 提交于 2019-12-01 08:46:48
问题 I've written my fairly simple first driver for a virtual device. It also has a .inf and I install the driver using devcon.exe. It install fine and functions properly but my problem is when I try to uninstall it: devcon.exe can't uninstall it and in Device Manager, the Uninstall, Roll Back and Disable buttons for the driver are disabled. My main concern for now is the Uninstall button. My driver implements the DriverObject->DriverUnload . I've look in the msdn docs, and for now I can't find