Tagged Questions
5
votes
1answer
212 views
How can I develop windows driver that does not touch hardware?
I need to create a WDM driver that emulates a device that is not present. The driver needs to be loaded when the O/S boots, opened and closed via SetupDiXXX and CreateFile, needs to respond to ...
1
vote
1answer
37 views
Where does the information on the Windows Security dialog during driver installation come from?
We are currently working on a Windows device driver based on Jungo's WinDriver (not really the important part) framework. We have a VeriSign certificate and no issues with the signing process or the ...
0
votes
0answers
20 views
How to install an INF file without DefaultInstall [closed]
How do I install an INF file that lacks a DefaultInstall section?
0
votes
1answer
14 views
.INF files, any way to take pre-removal actions?
It is wanted to catch a driver removal event within .INF (by having it to call custom dll/exe via some directive), neither by driver itself nor by userspace watchdog application.
Any hints on that?
...
0
votes
1answer
278 views
Make driver load automatically when USB device is inserted
I'm using a Limited User account under Windows XP, and I'm having a bit of trouble getting my Adaptoid (the most coveted N64 controller -> USB adapter, because of it's support for sending raw N64 ...
0
votes
1answer
342 views
.inf file AddRegistry section flag meaning (HKR,,“UpperFilters”,0x00010008,“upperfilt” ) what does 0x00010008 stand for?
At MSDN Installing a Filter Driver there is a sample file given (reproduced lower).
In the [upperfilter_addreg] section there is the registry line HKR,,"UpperFilters",0x00010008,"upperfilt".
What ...
0
votes
1answer
244 views
Windows Autorun for an HTML file
I have a html file on a flash drive that I would like to autorun in Windows. I have found examples of multiple ways to do this but none of them are working for me. Anyone see what I am doing wrong?
...