Questions tagged [wdk]

For questions about the Windows Driver Kit (WDK, formerly WinDDK), which includes the tools and documentation needed to develop drivers for the Windows platform.

The Windows Driver Kit (WDK) includes the tools and documentation you need to develop drivers. WDK 8 Release Preview is integrated into Visual Studio and provides almost all of the tools you need for developing, building, packaging, testing, and debugging drivers.

For more information, visit the WDK website.

756 questions
-1
votes
1 answer

Link Microsoft Visual Studio DLL to a WDK LIB

Is it possible to link a LIB file generated from the WDK to a DLL being built in Visual Studio? The versions would be VS2010 and WDK 7.1. I'm experiencing linker errors and was wondering if this was even possible.
Adam Driscoll
  • 9,395
  • 9
  • 61
  • 104
-1
votes
1 answer

Details about signed Windows driver

I have custom Windows driver which is used until now without signature. I want to sign it to avoid warning messages while installing on Windows 7 and allow installation on Windows 10 without need to disable some options. Currently I test with self…
i486
  • 6,491
  • 4
  • 24
  • 41
-1
votes
1 answer

Injecting a DLL from LoadImageNotifyRoutine, hangs on ZwMapViewOfSection

So I'm making a crackme and one of the parts is to hook a certain function and wait for a certain combination a params to happen, then the challenge is done. For that, I'm creating a driver to inject a DLL into processes that have a specific DLL and…
Denis Rozimovschii
  • 428
  • 1
  • 6
  • 19
-1
votes
1 answer

windowsdriver.common.targets missing

I'm using Visual Studio 2017 to develop Windows drivers. But when building the project, It returns the following error: MSB4019 The imported project "C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.common.targets" was not found. Confirm…
Mahdi
  • 664
  • 3
  • 15
  • 35
-1
votes
1 answer

Why with a custom port monitor do I receive "The data is invalid" after a call to EnumPorts?

I am implementing a custom port monitor based off of the LocalMon sample, but when I return from my implementation of LcmEnumPorts, I receive the error "The data is invalid", and the list of ports installed on my machine is empty. Removing the…
Mitch
  • 21,223
  • 6
  • 63
  • 86
-1
votes
1 answer

Windows 7 NDIS packet capture

I really want to capture the packet on Windows 7 but i'm beginner of windows programming so I have no idea, how can I solve the problem. I know I can capture the packet by using DNIS but my computer is windows7 but on the webpage there are only…
Leo.L
  • 1
-1
votes
1 answer

Problems with remote debugging with kernel mode driver

I use windows7 host machine there I installed Vusual Studio 2013 and WDK 8.1 Also I have Windows 10 virtual machine using Virtual Box. I create new KMDF driver from template and try to debug it. I succsesfully provisioned target machine (which is…
Vakyob
  • 41
  • 5
-1
votes
1 answer

NDIS driver - how?

I have read nearly all of the material on Microsoft's MSDN site, used Google (for the limited information that is out there) and also looked at the answers on here but I'm still confused on how to develop a NDIS driver. My aim is to create a ndis…
WhyYO
  • 41
  • 7
-1
votes
1 answer

integrate visual studio 2008 with windows driver kit 8.1

i am using windows 8.1 and my system has both vs 2008 and vs 2013(only mobile application). i am trying to run a code which contains hidsdi.h header in vs 2008. i want to integrate wdk 8.1 with vs 2008. firstly can i do it? if not than which wdk…
-1
votes
3 answers

How to hide a device in explorer

I would like to create a functionality for hiding a device, such as a DISK ON KEY, under explorer (for instance making E drive invisible). I should emphasize I only want to HIDE the device (or drive letter) under my computer, and not entirely…
RanH
  • 740
  • 1
  • 11
  • 31
-1
votes
1 answer

How to compile native applications using DDK?

I tried to compile native applications using DDK, but I got "don't know how to make '\nt.lib'" error. How to fix this?
zwclose7
  • 19
  • 1
-1
votes
1 answer

Windows Driver Kit, what does "storage must be resident" mean?

Are they refering to non-pagable memory or what? I cannot find any reference to resident storage.
John Leidegren
  • 59,920
  • 20
  • 131
  • 152
-1
votes
1 answer

What is the Microsoft name for WinDDK version 6001.18001?

I am trying to compile an old piece of code from 2009. In the compiler instructions the developer used Visual Studio 2008, .Net 2.0, and WinDDK: Microsoft Windows Driver Kit I need to know about WinDDK version 6001.18001 from the 2009 period. What…
shadowbq
  • 1,232
  • 1
  • 16
  • 29
-1
votes
2 answers

Developing a driver for several Windows versions (xp, win7, vista)

We are developing a DLL, which calls generic WinUsb functions from WinDDK. This DLL needs to work in 32-bit and 64-bit versions of Windows, including xp, vista, win7, and possibly win8. My question is, how can we manage the Visual Studio 2010…
SomethingBetter
  • 1,294
  • 3
  • 16
  • 32
-1
votes
1 answer

Pass macro to nmake

From my earlier post, I figured out why the command build /nmake "USER_C_FLAGS=/DMyVersion=3" doesn't associate the define MyVersion with value 3. MSDN says that - Compiling with /Dname= causes the symbol to not have an associated value. So,…
Mahesh
  • 34,573
  • 20
  • 89
  • 115
1 2 3
50
51