Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
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 ...
3
votes
1answer
458 views

matlab: exp(X) gives inf even though exp(max(X)) does not

[Edit: The whole thing has a very simple solution: the matrix used the single datatype instead of the default double] I have just noticed a somewhat peculiar (I think) behaviour in matlab and wonder ...
2
votes
2answers
42 views

Inf value after incrementation

Here's my code: x=0; for i=1:100 x=x+sqrt(((1/((((2*i)-2)^2)*(((2*i)+2)^2)))*16)+8); end For some reason I keep getting the infinity value (inf) for x after this operation??? Can someone ...
2
votes
3answers
82 views

R is there a way to find Inf/-Inf values?

I'm trying to run a randomForest on a large-ish data set (5000x300). Unfortunately I'm getting an error message as follows: > RF <- randomForest(prePrior1, postPrior1[,6] + ...
2
votes
0answers
27 views

Undo INF changes

I have an INF file for a filter driver in my WIX installer. I want to know. Is there any way to UNDO the changes made by this INF file during unsinstallation?
1
vote
0answers
14 views

Wix custom action to remove older version installed with INF file

I am working on a project that uses WIX to install an application. One of the requirements is to remove the old version before installing the current one. The old version is not MSI-based, it is ...
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 ...
1
vote
1answer
96 views

Create MSI from inf and ocx

i have ocx and inf file and need to create a msi file. Not sure how to go about it ?
1
vote
1answer
59 views

Can .inf file reference a built-in driver such that it won't give warning during installation?

Our device relies on a built-in windows driver (usbser.sys). Do we still need to go through WHQL testing or can we install in such a way that the user won't see a warning about not passing Logo ...
1
vote
0answers
50 views

Inf file PreCopySection

I have found [PreCopySection] section in some inf files. Often it ha only the following content: [PreCopySection] HKR,,NoSetupUI,,1 I tried to find any documentation on it using MSDN and Google ...
1
vote
1answer
281 views

draw matplotlib rectangle patch with infinite length

I can't seem to find a way to draw a rectangle patch with infinite side length in matplotlib, nor can I find any documentation or conversations as to whether there is a way to do this. basically: ...
1
vote
0answers
221 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
11 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
0answers
23 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
24 views

.INF files and NCF_HAS_UI: how to write .dll for displaying advanced properties tab of network driver?

I have a NDIS driver, which gets listed both in connection properties's installed items list and in device manager; the question is, how do I write an extension which will be used for managing ...
0
votes
1answer
36 views

.INF files: how to concatenate values in [Strings] section?

I have this in my .inf: [Strings] Driver_Name = "Our driver, build version 1112" For some reason (better SVN hook compatibility - want to assing build number at each time I commit .sys), want this ...
0
votes
2answers
93 views

Python: Return max float instead of infs?

I have several functions with multiple calculations that might return inf, like so: In [10]: numpy.exp(5000) Out[10]: inf I'd rather it return the maximum float value: In [11]: sys.float_info.max ...
0
votes
0answers
84 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
185 views

use devenv to build smart Smart Device CAB project with specified configuration

I have a Visual Studio 2008 solution with a Smart Device CAB project. I am working on automating the release process. I am using devenv to build the inf file that I use to build the CAB like this: ...
0
votes
1answer
279 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
2answers
108 views

Can a Self Extracting Zip File read a registry entry?

I'm trying to get my website to talk to a friend's program. Think ITunes - one main program with hundreds of thousands of little things installed into it. We don't want to have to create an ...
0
votes
1answer
474 views

Convert INF(Installation Instructions)to EXE Installer

I have an INF file in which I have to right click to install the files - So I wanted to convert it into a EXE Installer which has a Progress Bar !!! So I just need all the files in ONE EXE file so ...
0
votes
1answer
343 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
92 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 ...
0
votes
1answer
246 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? ...
0
votes
2answers
679 views

Deploy system DLL inside CAB file

I’m looking for a way to deploy a system DLL within my ActiveX CAB file. CAB cannot update system file and whole installation fails. Perfectly, I would like to copy the DLL into ActiveX installation ...
-1
votes
2answers
83 views

remove values from a python dict

I had a python dict like this: {'1' : {'1': {'A' : 34, 'B' : 23, 'C' : nan, 'D': inf, ...} ....} ....} For each "letter" key I had to calculate something, but I obtained values like inf or nan and ...