vista drivers
Tag details
Welcome to the 'vista drivers' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'vista drivers'.
Latest blogosphere posts tagged “vista drivers”
-
Re: Writing USB packet monitoring tool using WDF framework
Windows Vista Tips —
Authority: 165
embedinfo wrote: > >I am new to PC driver development. I would like to write USB packet >monitoring tool. Based on my reading I have decided to write USB upper >filter class driver. Upper filter to which class? >As a first step I added few DbgPrint messages all over the filter >function and ...2 days ago -
How to install Unidrv.dll programmatically
Windows Vista Tips —
Authority: 165
Hi I am writing a printer driver + monitor. I have created a programs that install my printer driver. How do I trigger the need of Windows printer components like unidrv.dll...? I know in an inf you invoke need=... How do I do the same programmatically?3 days ago -
RDF_CARD_TRACKING
Windows Vista Tips —
Authority: 165
I create a card tracking request at D0 entry. The RDF_CARD_TRACKING callback will then be called when a card is inserted in the card reader. So far so good. In the requests corresponding completion routine, I delete the request, create a new card tracking request and set the completion routine so that the ...3 days ago -
Identifing system processes.
Windows Vista Tips —
Authority: 165
The task manager shows different processes as belonging to the system or to a user. I guess (correct me if Im wrong) that the user mode processes that belong to the System are services. What Id like to know is how do I identify the owner of a process. For example in the kernel during IRP_MJ_CREATE, I can do ...6 days ago -
UMDF filter driver for raw PDO
Windows Vista Tips —
Authority: 165
Hi, I am just wondering is it possible to install an UMDF upper filter driver for a raw PDO that is created for sideband communication for a HID device? If so, is there any samples in DDK that can be referenced? Thanks. G6 days ago -
1394 Windows 7 - REQUEST_ISOCH_ATTACH_BUFFERS return STATUS_INSUFF
Windows Vista Tips —
Authority: 165
Hi! I currently work to get working our 1394 driver under Windows 7 using the new 1394ohci.sys driver. I get an error in our driver because we try to do REQUEST_ISOCH_ATTACH_BUFFERS and we get status STATUS_INSUFFICIENT_RESOURCES from MS driver. The first three call to REQUEST_ISOCH_ATTACH_BUFFERS return success but ...1 week ago -
GamePad Driver Development.
Windows Vista Tips —
Authority: 165
Hello ! I am working on a gamepad, its quite easy because its a HID gamepad, so windows reads it installs it etc. ^^ However I know I need to specify the forcefeedback information for it, I do have the data to inject to the gamepad to make it vibrate. I know it needs a 3 ring driver but thats really taken care by ...1 week ago -
Problem with video driver
Windows Vista Tips —
Authority: 165
Hello , I have a problem , my laptop is a Fujitsu-Siemens AMILO PI 2530 with a video-card ATI Mobility Radeon 2300.I just starting using for a time the new Windows7.I have a major problem , cant find the video driver for my video card. I would apriciate any help.1 week ago -
Hewlett Packard – Are the Chimps Running the Asylum?
Revelations From An Unwashed Brain —
Authority: 577
If you are one of the people who have made the plunge to Windows 7, you might have found that for at least one brand, printer divers are still a problem. I had used a Vista driver for my HP, but have not done much printing, so, other than a really fine test page and a report or two for my daughter, I can’t say for ...1 week ago -
Re: Time measurement using RDTSC instruction
Windows Vista Tips —
Authority: 165
jslim wrote: > >I implemented my own device driver which generates software interrupt >( INT n). >And I want to measure the execution time of my interrupt service >routine. >The execution time is too small to measure using nornal time function. No, its not, at least in this case. >What I ...1 week ago -
Re: Time measurement using RDTSC instruction
Windows Vista Tips —
Authority: 165
"jslim" wrote in message news:38a697b0-0905-40c9-b522-... > Hi all, > I implemented my own device driver which generates software interrupt > ( INT n). > And I want to measure the execution time of my interrupt service > routine. > The execution time is too small to measure using nornal time ...1 week ago -
Mystery Msft_Kernel file left in drivers directory
Windows Vista Tips —
Authority: 165
Hi, After we install and uninstall our (InstallShield) driver package on Windows Vista (32 bit), we see a leftover file: C:\Windows\system32\drivers\Msft_Kernel_ _01007.Wdf Does anyone know the reason for this file, or what its for, why it is not removed by uninstalling our driver(s)? Our driver package contains ...2 weeks ago -
Forbidden to remember contain files on a device disk
Windows Vista Tips —
Authority: 165
Hello, Having developed a driver is mapping a logical drive in an image file. RAW. My problem: Windows remembers the files contained readed or modified How to configure the device \\device\deviceimg for not the OS Windows stores the contain file contents in this memory. THERE must set media_type to media_removable ...2 weeks ago -
WinUSB on XP without WDK
Windows Vista Tips —
Authority: 165
are you installing with the winusb and kmdf v1.9 coinstallers? if you get as far as opening a winusb handle, there should be no need for any more wdk components, a hang in winusb_writepipe is indicative of a bug in your app or the hw is hung d -- This posting is provided "AS IS" with no warranties, and confers no ...2 weeks ago -
smbus.h missing!!!
Windows Vista Tips —
Authority: 165
Hi there, The Microsoft Windows Driver Kit 7.0.0.7600 refers to SMB functions ( http://msdn.microsoft.com/en-us/library/ms790467.aspx ) which are supposed tobe supported but thet are missing. There are no samples or source code to illustrate that API, it seems it exists only in MSDN. Any help?? Javier Andrés ...2 weeks ago -
Re: Adding WMI support to custom oids
Windows Vista Tips —
Authority: 165
"Vicks" wrote in message news:ca501131-42da-4876-a8b3-... > Hi, > > There is a sample driver in DDK about adding WMI support to custom > oids. I followed that and it worked for most oids. But i have some > custom oids which checks signature (ulong value) for verification of > authorized ...2 weeks ago -
USB Access Control in Vista
Windows Vista Tips —
Authority: 165
Hi! I am having a problem in handling usb access control. I know we can stop the USB access by setting 4 in "SYSTEM\\CurrentControlSet\\Services\\USBStor" . In Vista case, if drivers are not installed and if we connect USb then the drivers are isntalled automatically and the above registry value changes ...2 weeks ago -
Best way to use IOCTLs only supported on some Windows versions
Windows Vista Tips —
Authority: 165
Hello, What is the best way to use IOCTLs only supported on some Windows versions? For example calling DeviceIoControl with IOCTL_DISK_GET_DRIVE_GEOMETRY_EX is only supported on Windows XP and upwards. Should I test if I am on at least Windows XP before calling DeviceIoControl with IOCTL_DISK_GET_DRIVE_GEOMETRY_EX ...3 weeks ago -
RE: How to know system is suspending at the critical battery level
Windows Vista Tips —
Authority: 165
We are in fact facing a similar issue, where a critical battery level hibernate action does not seem to trigger the usual power event callbacks in our drivers and software. Should we perhaps listen for a different event in this case? Or is the event there, just very late/shortly before the shutdown? We are all ears ...3 weeks ago -
Re: hybird display adapter cant run DWM in Server 2008 R2 if one of adapter doest support 3D
Windows Vista Tips —
Authority: 165
1) Short answer: NO Long answer: In theory, if the display-set has VidPn-Exclusive-Ownership outputs for your card and VidPn-Shared-Ownership outputs for the remaining ones, then yes. In other words: if you have a full-screen DXGI/D3D[10|11] application on the monitor that is being driven by your card, then the deskop ...3 weeks ago