Tagged Questions
SetupAPI is a Win32API that is used for installing device drivers and in enumerating existing devices on a Windows computer.
3
votes
2answers
217 views
“SetupOpenInfFile” getting access violation error in Delphi2010
When using the following line code in Delphi 2010, a'm getting an "Access Violation" error, but the same code working fine in VC++.
The Delphi 2010 code is
var
hMyInf : HINF;
begin
hMyInf := ...
3
votes
4answers
966 views
dpinst / DifX won't install signed driver silently
When installing an Authenticode-signed driver on Windows 7 through DpInst, unless it's a WHQL-signed driver, you cannot install it silently. If you run DpInst in the non-silent mode, it'll prompt you ...
2
votes
0answers
52 views
Why is the SetupDiCallClassInstaller function restricted to 64 bit programs?
Attempting to call SetupDiCallClassInstaller from a program compiled in 32 bit mode fails on 64 bit Windows.
Apparently this is by design, but I'd like to know the reason.
2
votes
1answer
137 views
Getting hardware GUID for video adapter in C#
I'm developing a launcher application for a 3D game on Windows. The configuration "ini" file requires the user to specify the hardware GUID for the desired device, as in, the Device Identifier GUID ...
1
vote
1answer
127 views
How to Get Driver Install Date?
How do you get the install date of a driver using the Setup API?
(This is pretty much the same as this question, except that I'm looking for a solution with the Setup API, not WMI.)
The data I ...
1
vote
2answers
91 views
Can the key of a line in an .inf file be retrieved using the SetupAPI?
I'm using the function SetupGetLineText ( http://msdn.microsoft.com/en-us/library/aa377388(v=VS.85).aspx ) from the Setup API to read a line from a section in an inf file.
Lines are in the format:
...
1
vote
1answer
170 views
DeviceAttached message never comes
I am trying to develop a C# application that can communicate with a USB HID. I have overriden my WndProc method so that is catches all of the WM_DEVICECHANGE events and passes the DeviceChange method ...
1
vote
1answer
346 views
SetupDiGetClassDescription returns FALSE, sets error 0xE0000206
I've been playing with the SetupApi on Windows 2003 over the last couple of days, and I'm seeing a bunch of errors I'm not expecting. For example, if I pass GUID_NULL to SetupDiGetClassDescription, it ...
0
votes
0answers
40 views
SetupDiCallClassInstaller throws ERROR_IN_WOW64 when compiled for 32 bit on a 64 bit machine.
Calling SetupDiCallClassInstaller on a 64 bit machine when compiled for 32 bit returns false.
GetLastError() == ERROR_IN_WOW64
All the other function calls work fine under 32bit, just this one is ...
0
votes
1answer
48 views
Installing a specific driver for a specific device programmatically (and when pre-install fails)
I have a signed driver and I need to install it programmatically for a specific USB device using C# (targeting Vista and 7 64-bit).
I found very easy the use of the DriverPackagePreinstall function ...
0
votes
0answers
23 views
How to use SetupDiCreateDevRegKey to create subkeys under SYSTEM\CurrentControlSet\Enum\
I am trying create a pnp virtual-serial-port driver. I am using these functions in the following order:
SetupDiCreateDeviceInfoList
SetupDiCreateDeviceInfo
SetupDiSetDeviceRegistryProperty
...
0
votes
1answer
427 views
WinUSB driver installation failing on XP (works fine on Win7)
I'm having difficulty installing a WinUSB driver on Windows XP (x86, service pack 3). I've followed the Microsoft WinUSB guidelines to create a signed driver package using an inf file, signed cat file ...
0
votes
1answer
93 views
SetupDiGetClassDevs causing error on XP, app built in VS2010, on Win7
I'm writing a WPF app that uses PINVOKE to make calls to a dll that I'm also writing. In one of the exported functions in the dll, the SetupDiGetClassDevs is called. At this point, when running the ...
0
votes
1answer
78 views
How to tell digital camera from other devices using WPD and using Setup API
I've got 2 tasks:
a) distinguish digital cameras from other MTP-devices, obtained by IPortableDeviceManager::GetDeviceList;
b) I want to find connected digital cameras with Setup API. My thought ...
0
votes
1answer
322 views
Windows XP custom USB class driver, pre-install without WHQL signing?
I'm working on a Windows driver for a USB device and the installation has to override the built-in class driver from Microsoft, so that the device uses my driver.
The driver is self-signed but not ...
0
votes
0answers
118 views
Problem building list of compatible drivers
I'm trying to build a list of compatible drivers for a firewire card installed on my system. I currently have our own class driver, using our own class guid, installed for the card, so it does not ...
0
votes
1answer
78 views
How enumerate all device objects?
Sorry for my English.
I want to enumerate all pointers to the DEVICE_OBJECT's in the system. I know that this can be done from the user mode, but I forgot. May be with helping of ...
0
votes
2answers
193 views
Internal works of WMI?
I'm curious as to how WMI works. Particularly, I am currently using WMI to query for the physical monitors via "Select * from Win32_DesktopMonitor" as it has consistently given me the correct result ...
0
votes
2answers
1k views
Does SetupDiGetClassDevs work with device instance IDs as documented?
According to MSDN documentation, SetupDiGetClassDevs can be passed a device instance ID to obtain a device information set for a specific device:
To return only a specific device, set
the ...