774 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
60
views
Windows DDK does not contain a km directory
I'm trying to do some driver development work with Visual Studio 2022. I'm looking at this article. I have downloaded everything that is listed with the VS2022 installer and had no installation issues,...
3
votes
1
answer
293
views
Visual Studio 2022 KMDF Driver Project "Build Succeeded" but No .sys File is Generated
I'm facing a very confusing issue while trying to compile a minimal KMDF driver using Visual Studio 2022. The build process completes without any errors and reports Build: 1 succeeded, 0 failed, but ...
0
votes
1
answer
137
views
A test app calling WinAPI ReadFile to a device driver always returns error code 87 (The parameter is incorrect)
Intro
I have this solution.
MNWE - (Minimum Non-Working Example)
ChatGPT gave me the following test app:
#include <windows.h>
#include <stdio.h>
#define DEVICE_PATH "\\\\.\\...
0
votes
0
answers
100
views
WDK 10.0.26100 in Visual Studio 2019
According to the official documentation, the latest WDK (10.0.26100) only supports Visual Studio 2022.
However, I'm trying to use WDK 10.0.26100 with Visual Studio 2019, and I'm getting the following ...
0
votes
0
answers
164
views
I tried to install the windows WDK in Visual Studio 2022, having problems
I tried to install the windows WDK in Visual Studio 2022, following instructions for the NuGet, but Visual Studio doesn't show up with NuGet Packages at all in the NuGet package manager. Could someone ...
0
votes
0
answers
249
views
How to completely wipe installation of VS 2022 and re-install it from scratch? Missing ntddk.h error for a kernel driver
I've spent close to 2 days trying to resolve this pesky error.
I have a VS 2022 project for a kernel driver, written with KMDF. I developed it using VS 2022. I wanted to transfer it to another PC ...
0
votes
0
answers
44
views
How to call UMDF driver
I have a question about UMDF, need your help to comments, Thanks.
Background:
We want to dev a UMD driver (using UMDF2)
We want to use an App to call this UM driver.
Question:
The only interface ...
0
votes
0
answers
99
views
Vs2022 WDK Project using Template "Empty WDM Driver" compiling but not linking to .sys
When compile my project, it gets compiled and in myproject/myproject/x64/Debug i don't see any .sys, i ,see a .obj file. The Screenshot: The out folder in explorer
I definitely installed the WDK all ...
-1
votes
3
answers
785
views
Unable to load DLL 'x86\InfVerif.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
I used Windows Driver Kit form Microsoft and tried build tool on Windows 11 with Visual Studio 2019.
I have installed both:
WDK 22H and SDK.
I complie file but i see error massge
Unable to load DLL '...
0
votes
0
answers
46
views
[CANNOT FIND DDK]; I am trying to install open vpn driver tap for windows
I have this error but according to the instructions that follow from Microsoft to install Windows Toolkit I did everything to the letter.enter image description here
This is the link, I already have ...
0
votes
1
answer
105
views
Visual Studio 2022 Driver Build - Warning C4324 - On Class and can't disable?
Visual studio 2022 driver ARM64 build is complaining:
warning C4324: 'CMyClass': structure was padded due to alignment specifier
I already listed all include files and all my:
#include <alignN.h&...
1
vote
0
answers
40
views
Unable to deploy minifilter driver
I have built a minifilter driver, and I want to deploy it on the same machine where I have built it.
I have disabled driver signature enforcement.
Created the service using sc create <...
0
votes
1
answer
179
views
fltKernel.h missing from newer Windows Kits - What am I supposed to use?
I have an existing file system filter driver using sources and build.exe from the old kits (I typically used WDK 7600.16385.1) that worked fine. But I want to build it for ARM64 which (from what I ...
0
votes
1
answer
253
views
How to resolve "Found legacy AddReg operation using non-relative key" error during INF verification Windows 11 24H2 Build 26100?
Trying to pass the Windows HLK INF verification test on Windows 11 24H2 26100 Build.
I have been using the Windows kits tool InfVerif.exe to validate my inf file and execute
infverif.exe /u "...
1
vote
0
answers
38
views
How to correct write/read error with deviceIoControl from different processes?
Good afternoon
I have a kmdf driver that can read and write to a file.
Through a custom application I can send IOCTL requests. If I send a request from one process to write, from another process to ...