Tech Support > Microsoft Windows > Drivers
OS Question
Posted on May 15th, 2008 | 31 Comments

"Alexander Grigoriev" wrote:

3dLabs Permedia graphics card
Posted on May 15th, 2008 | 0 Comments

Hi, Can someone point me to a graphics card which is compatible with permedia 2 or permedia 3 sample drivers that come with win DDK ? Regards Manish

assessing winusb potential
Posted on May 15th, 2008 | 28 Comments

Hardware. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation maxim@storagecraft.com http://www.storagecraft.com

Deallocating memory
Posted on May 14th, 2008 | 3 Comments

I hope you do have a DPC scheduled out of the ISR. Is the free call made in the ISR? Or in a routine at high IRQL? -- --GNR "Don Burn" wrote:

BSOD_PAGE_FAULT_IN_NON_PAGED_AREA
Posted on May 14th, 2008 | 4 Comments

You can try setting a new driver name in the INF file. If you still want to change in the code you can directly change the theDriverObject->DriverName by either Initializing that string or by...

How to identify isochronous devices?
Posted on May 14th, 2008 | 1 Comments

look at the endpoints in the config descriptor. if there are isoch endpoints, you have an isoch device. typically an isoch device will be multi interface, or at least one interface with multiple...

why microsoft newsgroup's new look.???
Posted on May 14th, 2008 | 0 Comments

Hi, Today, I looked microsoft newgroup and found new look. There is left pane of languages and select your language then see you intersted newgroup. Please tell me why Microsoft changed this view...

Please give me useful links for driver signing
Posted on May 14th, 2008 | 0 Comments

Hi, I have written IM driver and want to make signed from microsoft. Can any one give me useful where I can get all required information. What test case should I run ? How can I run this cases? How...

DTM:Error occurs during receiving the list of machines in Default
Posted on May 14th, 2008 | 1 Comments

"nbK" wrote: My error is ^slightly^ different, but essentially the same: ------------------------------------- Failed the Job "System Master Config Job" Job Failed And Rest of the Tasks Cancelled...

Multiple connections to a capture minidriver
Posted on May 14th, 2008 | 0 Comments

Hello, everybody, I have a task to share a single video stream among several user mode applications at the same time. User mode apps can be written to use DirectShow or VfW architecture -- I need...

[OT] Portable MSDN Library,...
Posted on May 14th, 2008 | 1 Comments

Interesting question for the ISVs. You basically want something that will decompress selected HxS files and then index them for searching. Maybe turn them into a CHM. The entire MSDN is millions of...

serial ioctl problem
Posted on May 14th, 2008 | 4 Comments

chris.aseltine@gmail.com a écrit : The first write irp is completed in the function usb_write_complete, with this call : WdfRequestCompleteWithInformation(req,...

How to capture the disk-writing activities?
Posted on May 14th, 2008 | 2 Comments

"Cravin" <cravinzheng@bizcon.org> wrote: Does this strike you as a better backup solution than simple mirroring? It would seems to accomplish the same thing with less overhead. -- Tim Roberts,...

RemoveHeadList crashes system
Posted on May 14th, 2008 | 2 Comments

Kid of the neon <Kidoftheneon@discussions.microsoft.com> wrote: Why would you use global memory variables for this, requiring a memory access to fetch the value, instead of leaving these as...

Scatter/gather DMA to a kernel buffer
Posted on May 14th, 2008 | 1 Comments

Alex <viszont_latasra_@nerdshack.com> wrote: Umm, since you allocated the buffer, don't you HAVE the virtual address? Specifically, MyBuffer->BufferHead? -- Tim Roberts, timr@probo.com Providenza &...

Where can I find the stardand IDE Contorller spec for Windows XP?
Posted on May 14th, 2008 | 8 Comments

If this card is a PCI IDE Card and its class code is IDE controller that follows Intel specification, does Windows still need a Vendor-specific driver to drive it?

How to set NIC to promiscuous mode from FilterHook driver
Posted on May 14th, 2008 | 5 Comments

So from your reply I take it you are interested in getting packets destined to other hosts -that are not necessarily originated from the host your filter is running on-. As I said in my previous...

driver verifier problems...
Posted on May 13th, 2008 | 2 Comments

Why do you need running verifier on a dump? -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation maxim@storagecraft.com http://www.storagecraft.com <amparikh@gmail.com> wrote in...

genprint example in WDK
Posted on May 13th, 2008 | 2 Comments

On May 13, 11:40*am, "David Craig" <driv...@nowhere.us> wrote: I have managed to build it successfully for Vista. Why is XP not proper for this example?

kernel mode proxy driver
Posted on May 13th, 2008 | 11 Comments

Maxim, That is what started this thread. You cannot access SCO (Audio) without doing so from a kernel mode driver. -Erik "Doron Holan " wrote: