Tagged Questions
6
votes
1answer
1k views
How do I use WiX to deploy an INF-based USB driver
This question could be considered a duplicate of:
http://stackoverflow.com/questions/677686/how-do-i-deploy-a-inf-based-driver
Except that I want to do that entirely in the installer, not with a ...
1
vote
0answers
223 views
how to register a upper filter driver to all printers class via .inf file (AddReg section)
I have a filter driver (similar to following):
NTSTATUS MyFilterFunction (
__in PDEVICE_OBJECT DeviceObject,
__in PIRP Irp
){
NTSTATUS status = STATUS_SUCCESS;
// do the filtering
...
0
votes
0answers
22 views
one device model, using two DDInstall sections in an .inf file
I have multiple WinUSB devices, that all need to install the generic WinUSB driver. Each device also needs significantly different add ons. What I'd like to do is something like the following
...
0
votes
1answer
15 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
0answers
86 views
How do I install an upper filter driver and set RemovalPolicy via inf
I'm trying to install libusb as an upper filter for my device which is a standard mass storage controller and at the same time set the RemovalPolicy for the disk to ExpectSurpriseRemoval but I can't ...
0
votes
1answer
326 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
351 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
2answers
97 views
launch exe from inf installation
in my recent project, i have to launch an exe from inf.
when my company's device is plugged into win 7 system, PnP service will search device driver from Windows Update Server and install it ...