The Windows Driver Kit (WDK) includes the tools and documentation you need to develop drivers.

learn more… | top users | synonyms

0
votes
0answers
9 views

automating windows driver builds

We have a printer driver that we need to build for all OS's from Windows XP to Windows 8, both x86 and x64 versions. I can do this manually using the WDK free build environments, but I need to ...
-3
votes
0answers
34 views

Need help to re-learn DirectX [closed]

I went to University and learnt DirectX 9 programming in C++ but haven't done anything with it for quite awhile and now things have updated quite a bit since 2010 (namely vs2012 and WDK). I want to ...
0
votes
0answers
22 views

Development of printing documents to a virtual printer with configurations

This question may be duplicated. However, I couldn't get much information about what I'm looking for. I need opinions and directions before kick starting the development. Here's the requirement. ...
0
votes
1answer
31 views

TeamCity builds of VS2012 solutions with C++ projects containing Device Drivers failing to clean directories

I'm getting failures when Team City attempts to build my device driver the second time around after a reboot. It cannot clean out the VCS root because a directory is locked and not sure why.
0
votes
0answers
28 views

How to View KdPrint Messages WDK 8

I just started to learn driver development using VS2012 + WDK8. I have some KdPrint statements in DriverEntry to print out some messages. Where can I get these messages?
0
votes
1answer
33 views

How to debug a driver file (INF) in vs2012

I followed the instruction in the url below till Step 10 to develop a helloworld kernel-mode driver. Everything seems all right. In Step 11, I ran windbg command bp kmdfsmall!DriverEntry, then F5. ...
1
vote
1answer
39 views

Passing variable length struct from User Mode to Kernel Mode

I'm writing virtual disk driver, and there I have structure defined like that: typedef struct _MOUNT_NEW_QUERY { PWCHAR imagePath; WCHAR letter; PCHAR key; } MOUNT_NEW_QUERY, ...
1
vote
1answer
43 views

VS 2012 Bug? - Driver Package Project does not always use Output Directory

In the process of moving my driver project to WDK8 and Visual Studio 2012, I came across a minor issue regarding the driver package output directory configuration. Fortunately, it is easy to ...
0
votes
1answer
48 views

Minifilter Driver - Which IRP request should I filter for realtime virus protection?

After I looked into the MS example (Scanner File System Minifilter Driver). I noticed that they use only IRP_MJ_CREATE, IRP_MJ_WRITE, IRP_MJ_CLEANUP. Will it enough for realtime protection?
1
vote
0answers
38 views

could not open service xx,when i install a wdf driver to win7 x64

I think there's a problem in my inf file. But my driver and inf work fine in windows xp and win7 x86. I also searched this problem, see somebody said service's name not the same. But in my inf, it's ...
1
vote
0answers
57 views

Kernel kb filter ioctl IRP / variable declaration error

The below code is the (modified) KbFilter_ServiceCallback routine from the WDK kbfiltr.c sample. As it is, it builds fine but when I uncomment IRP *irp;, it causes an error: 1>errors in directory ...
1
vote
1answer
48 views

usersendinput and userpostmessage hooking

I want to hook the usersendinput and userpostmessage hooking in windows 7.It didnt export by SSDT.So I am unable to accomplish this via SSDT hooking.I want to write my own api handler for these api ...
0
votes
1answer
34 views

ZwDebugActiveProcess Hooking

I am trying to create antivirus software shield for windows 7 32 bit .For that I need to hook ZwDebugActiveProcess.When i try to specify the ZwDebugActiveProcess in my driver i got an error ...
0
votes
0answers
19 views

Driver Cannot Started?

I have created a driver for SSDT shadow hooking.The driver created successfully in windows 7 environment using wdk.Whenever i try to start the service of driver using osrloader I got an error like ...
0
votes
2answers
47 views

String functions in C driver development on Win7

I'm coming from user-level development and I'm completely new to C/C++ on the kernel level. What I have to implement is a string parser based on a split function like strtok known from string.h. As ...
0
votes
1answer
75 views

Errors in Visual studio 2012 mini-filter project template

Hello i started programming my mini-filter in vs2012, win8. After creating a new project Filter Driver: Filesystem Mini-filter i am getting 6 errors. 7 IntelliSense: argument of type "void ...
0
votes
1answer
40 views

How to view the content of DbgPrint?

I am new to driver programming.I have created one simple driver in windows 7 .I try to install in my kernel using osrloader? Whether osrloader works in windows 7 32 bit ?I use DbgPrint in my coding ...
0
votes
1answer
72 views

VS 2012 WDK 8 computer configuration error

There's a strange error in my Visual Studio 2012 Professional When I click on Driver > Test > Configure computers I immediately receive an error 'Could not load file or assembly ...
0
votes
1answer
189 views

How to get process Id of certain process in C

I am trying to create a driver in Windows 7 32 bit. I am writing the driver in C. In the driver code I am trying to get the process id of notepad.exe. I don't know how to get the id of that process, ...
0
votes
0answers
108 views

Unidrv print driver with render plug-in not supported on Win7 64-bit?

I have a "print to PDF" printer driver that I created and it works well in Windows XP, Vista, and 7, 32-bit, but not in Win7 64-bit (haven't tested other 64-bit versions). When I attempt to install I ...
0
votes
0answers
116 views

WDK 8.0 - debugging (deployment?) issue

I'm trying to develop a driver using Visual Studio 12 and WDK 8.0, integrated with it. Also, I want to debug my driver using VM (I'm using Windows 8 for development, so I would like to use build-in ...
0
votes
0answers
182 views

Create WinUSB Driver for Windows XP

We have developed a Device Driver on top of WinUSB device driver provided by Windows DDK, our device is a fingerprint scanner having "Cypress EZ-USB FX2LP™ USB Microcontroller". To communicate with ...
0
votes
1answer
148 views

How to install pscript/unidrv rendering plugins? DDK/WDK print/oemdll samples are acting strange

I'm trying to get something of pscript/unidrv rendering plugins, but the provided DDK samples just can't be installed on any possible combination of DDK/build/target system I ever have. The message ...
0
votes
0answers
35 views

Windows driver - Mapping userland memory from one process to another

I need to implement a very fast way to scan another processes memory in Windows. The ReadProcessMemory API is not fast enough for me. I can't alter the code of the other process to create memory ...
0
votes
1answer
49 views

Rename the 'makefile' build.exe expects to something that won't clash?

In the DDK/WDK the build.exe expects certain files in a folder. As soon as you give a sources file, you are also expected to have a makefile in the same folder. Obviously this name clashes with all ...
0
votes
0answers
93 views

kernel API hooking possible in Mini FIlter

I want to hook the SSDT in windows 7 x64 for NTOpenProcess,Ntopenkey.etc.I already disable the patch guard.When I try to hook SSDT as root kits keservicedispatcher table is not exported in x64.While i ...
0
votes
1answer
137 views

Error in WDK while compile using x64 checked build environment

I try to build a kernel mode driver in windows 7 x64.I already disable the patch guard.whenever i open the x64 checked build environment command prompt i get this error "WARNING: x64 Native compiling ...
0
votes
1answer
42 views

WDK build environments versioning

Sorry if I am asking something obvious. I was trying to recompile usermode helper dll for a driver using Windows 7's WDK when I noticed that is distributed with different dll for each OS built using ...
0
votes
0answers
64 views

How to resolve this error while build kernel hook driver using WDK?

I try to build the kernel hooking driver using WDK in windows7 x64. I used the code of professional rookit book chapter 3.But I got 2 errors 1. c:\chapter03ghost\src\hookmanager.obj : error LNK2001: ...
0
votes
0answers
39 views

How to integrate Visual Studio2008 with WDK?

I need to build a kernel mode driver.I do not know how to integrate with Visual Studio 2008.I know to build the driver via command prompt. Is that command prompt itself enough to create kernel mode ...
-1
votes
1answer
37 views

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.
1
vote
1answer
109 views

Cannot declare variable at all with Windows Driver Kit build environment

I have a trivial driver, like so: #include <ntddk.h> NTSTATUS DriverEntry(__in DRIVER_OBJECT* a, __in UNICODE_STRING* b) { UNREFERENCED_PARAMETER(a); UNREFERENCED_PARAMETER(b); ...
0
votes
1answer
49 views

WDK7: Using IoAttachDeviceToDeviceStack gives “Memory must be held” warning in PREfast

I am using PREFast to check some driver code build for Windows7. The following line of code stackDeviceObject = IoAttachDeviceToDeviceStack(deviceObject, PhysicalDeviceObject); Gives the warning: ...
0
votes
0answers
22 views

How to install my own driver in kernel model windows-7 x64 [duplicate]

Possible Duplicate: Whether my own driver needs digital signing in Windows 7 x64 I have created driver to hook ssdt on windows 7 x64.Is there any other code or commmands to install a driver ...
1
vote
3answers
242 views

Whether my own driver needs digital signing in Windows 7 x64

I have created driver to hook ssdt on windows 7 x64. I have one doubt whether I need to digitally sign my driver to install in kernel mode on x64 or else I need just windows drive kit to install it. ...
0
votes
1answer
78 views

FltReadFile funcation for reading more than 1 kb file

I am using FltReadFile function from WDK for reading files. I am able to read only 1kb file. How to read file having more than 1kb?? THank you. offset.QuadPart = bytesRead = 0; status = ...
1
vote
0answers
75 views

How to query file size when APCs are disabled?

During my minifilter's PostCreate, I must use a global push lock to synchronize threads by design, and I must call FltQueryInformationFile to query file size. However, 1, After I called ...
0
votes
1answer
111 views

How to determine if a FILE_OBJECT represents a normal file or device?

The MSDN page on FILE_OBJECT says: "Note The type of object (for example, a file, directory, or volume) that a given file object represents cannot be determined by only examining the ...
0
votes
2answers
294 views

Int2Cat - DriverVer set to incorrect date

I'm trying to develop a driver using Visual Studio 2012, which automatically integrates with WDK. When I try to build my driver, I receive an error message from Inf2Cat app. It says: Errors: 2> ...
0
votes
2answers
80 views

Generate custom error message from makefile with WDK build tools

I'm compiling a driver using build.exe from the Windows Driver Kit. The system which builds the drivers needs to have a specific environment variable set. If not, I want build to fail with a custom ...
1
vote
1answer
173 views

FileSystem MiniFilter Driver compiled with WDK 8.0 not showing DbgPrint output (DbgView/Win7 32 bit)

I wrote and compiled a minifilter driver using WDK 7.0 build utility for Windows 7 32 bit. Then i installed it on a Windows 7 (32 bit) machine running on VMWare using OSR's driver loader utility. When ...
-2
votes
1answer
126 views

Location of postscript file from a print job in Windows + creating windows [closed]

I created an App in C# that converts postscript to any format like pdf, jpeg, etc,. Now I need to add a Virtual printer in my system and capture the print job to that printer and locate the postscript ...
2
votes
2answers
247 views

Win7 64bit legacy nt4 driver signing issue

it's been since WinXP I don't use the Windows DDK (now WDK) and I've noticed something big is changed. I'm developing a legacy NT4 filter driver (without .inf and without .cat) with the latest Win7 ...
0
votes
2answers
421 views

WDK8 - Where is winusb.h?

I am trying to use WinUSB in my project. The guide I am following is http://msdn.microsoft.com/en-us/library/ff540174.aspx. This article tells me to include the following files: // Include Windows ...
0
votes
0answers
123 views

Writing a simple printer driver with custom user interface(custom printer preference page)using WDK7?

I'm trying to study WDK to write a printer driver. I'm able to compile and install the sample minidriver given with the WDK. I need to write a customized UI for some sample driver. How can i do it? i ...
0
votes
3answers
186 views

NDIS Hook sendPacketsHandler

I use NdisRegisterProtocol() to register a protocol driver, and use _NDIS_OPEN_BLOCK and _NDIS_PROTOCOL_BLOCK structures to hook the ReceivePacketHandler successful, use MyRecivePacket() to instead of ...
1
vote
0answers
122 views

Why is kernrate.exe removed from WDK 8? [closed]

Why did Microsoft remove the kernrate.exe tool from the WDK 8? I've seen on the "What's Changed in the WDK for Windows 8" section from the "Index of Windows Driver Kit Tools (Windows Drivers)" site ...
6
votes
2answers
619 views

Windows Driver Development: Deploy option missing in Visual Studio 2012

I was trying to compile and deploy the WFP sample obtained from MSDN called msnmntr but the same problem applies to all samples. This and all samples fail to deploy because there's one step in the ...
1
vote
2answers
185 views

named pipe from UMDF printer driver to user-mode application

I'm quite new to WDK, I'm trying to create, a virtual printer driver which will send data to user application using named pipe. I'm using 'XPSDrv Driver and Filter Sample' as start. I've added new ...
1
vote
0answers
73 views

libcmt.lib delete

Recently we did some big architectural changes (i.e. mutlithreading support) to our cloud print module. Now I have to run a PreFast check on it, but because the current edition of Visual Studio 2008 ...

1 2 3 4