Click here to Skip to main content
15,885,063 members
Everything / WDM

WDM

WDM

Great Reads

by Member 13737597
This article shows how to enter vga text mode and return from it on Windows 7
by Alexander Eremeev
The Windows kernel-hacking library and development framework written on C++17
by Member 10392111
This article shows you how to hook driver's dispatch routines.
by Member 13737597
This article shows how to enter vga text mode and return from it on Windows

Latest Articles

by Alexander Eremeev
The Windows kernel-hacking library and development framework written on C++17
by Member 13737597
This article shows how to enter vga text mode and return from it on Windows
by Member 13737597
This article shows how to enter vga text mode and return from it on Windows 7
by Member 13737597
This article shows you how to share builtin CD-ROM / HDD over network

All Articles

Sort by Score

WDM 

10 May 2018 by Member 13737597
This article shows how to enter vga text mode and return from it on Windows 7
1 Nov 2018 by Alexander Eremeev
The Windows kernel-hacking library and development framework written on C++17
18 Jan 2018 by Member 10392111
This article shows you how to hook driver's dispatch routines.
19 May 2018 by Member 13737597
This article shows how to enter vga text mode and return from it on Windows
18 Dec 2014 by Richard MacCutchan
Unless you are prepared to do a lot of research then I think this is a task too far. You can find a wealth of information via Google, and also the WDK website[^].
10 Oct 2013 by SYAMKUMAR S
What are the steps to change the WDK MSVAD samples to get multichannel capture/render support?
11 Nov 2013 by SYAMKUMAR S
Hi,Which driver framework is suitable for making a Virtual Audio Device Driver (fake audio device driver)? UMDF or KMDF? Is it possible to make a virtual audio device driver from a Component Object Model (COM) dll architecture (eg:-ASIO4ALL.dll driver is a user mode device driver)and the...
8 Dec 2014 by davi portella
Hello Everyone, I need preview this device below in my application.http://www.geniatech.com/pa/hd-cap-u800.aspIt is a WDM/Kernel Streaming driver and doesn't list in my software and any others like Adobe Flash Encoder, Windows Media Encoder, Wireshark, ONLY in HDCap software.The...
18 Dec 2014 by Member 11322650
i want to develop filter device driver for file system and anti-viruse and rootkit and etc.. usagewhat is prerequisite for develop Windows device driver??what is key concept i should know ?thread ?? Memory Managment ?difference locks??please give me some resource(website or book)
10 Mar 2015 by zhoulong880
kd> gwatchdog!WdUpdateRecoveryState: Recovery enabled.Enter ASIODrv DriverEntryLeave ASIODrv DriverEntryEnter ASIOAddDeviceIoCreateDevice is SuccessAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBIoAttachDeviceToDeviceStack is...
11 Mar 2015 by KarstenK
My tip is to check why the driver is loaded. Have you specified your driver for this hardware typ {7a9171d1-69cc-4939-be31-bbb2f4f9e9c5} or NOT changed the id from some sample code.
31 Mar 2015 by zhoulong880
I want to write an Audio driver for my USB sound card, In the MSVAD project, it's a virtual sound card. I've taken several days to learn the way to communicate with the hardware, but I don't know the way to communicate with the hardware.. What should I do?
18 Jul 2015 by hassan_sayfi69
HiHow can I get Thread Id from its handle in NtCreateThread(&ThreadHandle) system call or NtCreateThreadEx(&ThreadHandle, ...)?I try to load thread's information by calling NtQueryInformationThread but this system call fails with ambiguous error code. Now I need a solution to get an ID of...
19 May 2023 by Rahul@puna
Hi All, I have created a basic empty WDM driver using Visual studio and Spectre Mitigation is set to Disabled . Even after that i am getting the above mentioned error. Any Idea. The issue is not coming when I am creating sample user mode...
19 May 2023 by Andre Oosthuizen
Not my field of expertise at all, some Googling I found the following - The error is related to compiler security checks for Spectre variant 1 vulnerabilities Spectre (security vulnerability)[^]. Try the following steps(again, not my field) -...
28 Mar 2018 by Member 13737597
This article shows you how to share builtin CD-ROM / HDD over network
17 Feb 2018 by Member 10392111
This article shows you how to dig into windows kernel using IDA and Virtual Box
22 Apr 2014 by Ali kianinejad
hi i want to write a function in kernel mode driver that get a process and print which function call by that processplease give some link or sample code i can't find any useful thing in goolge
20 Jul 2015 by Sergey Alexandrovich Kryukov
In Windows, this is how: https://msdn.microsoft.com/en-us/library/windows/desktop/ms683233%28v=vs.85%29.aspx[^].Note that the handles are only valid inside a single process (it can be inherited as is by child processes); and the same arithmetic value can be something different or meaningful...