搜索资源列表
20020405
- 本文分三部分来介绍如何构造一个简单的USB过滤驱动程序,包括“基本原理”、“程序的 实现”、“使用INF安装”。此文的目的在于希望读者了解基本原理后,可以使用除DDK以 外最流行也最方便的驱动开发工具DriverStudio来实现一个自己的过滤驱动,并正确地安 装。 -how to structure a simple USB filter driver, "basic principles", "Implementation of procedures
Usb-Security
- File system filter driver
usbfilt.zip
- 一个简单的上层USB过滤驱动,在此基础上可以实现U盘只读,只写,加解密等功能。,a simple usb filter driver. you can implement read-only,write-only, encryptand uncrypt function based on this project
usbfilter
- USB过滤驱动程序框架,用DriverWorks生成的源码。-USB filter driver framework, the source code used to generate DriverWorks.
UsbFilter
- USB filter driver sample
PS_2USB
- 实现一个 PS/2 与 USB 键盘过滤驱动,兼容所有 NT 系列的操作系统。-Implementation of a PS/2 and USB keyboard filter driver, compatible with all NT series of operating systems.
FilterDriveronFSDanditsApplications
- 实现对文件系统访问的完全控制只有通过过滤驱动技术。介绍了Windows NT 文件系统驱动和过滤驱动原理、过滤驱动的几种用途以及如何加载一个过滤驱动,设计并实现了一个控制USB 设备的过滤驱动实例。 -Theory of File system driver filter and a application for controlling USB device.
HIDTestSource
- 该程序演习特定设备的Windows藏的API。 安理会呼吁有关藏职能,并显示结果。 扩展的测试要求不寻常,但有效的参数功能的HID。 结果使检查错误隐藏的驱动程序。 在Windows HID类驱动程序的异常已经考虑到。 任何HID过滤驱动,HID氙微型驱动或为HID设备的USB过滤器驱动程序可能会导致问题,甚至BSODs。 当程序显示了HID设备中只用了Windows类驱动程序和安装自定义驱动程序,然后自定义驱动程序真正透明方面的HID API相同的结果。 即使
PnpTest
- 过滤驱动禁用PC机的各种设备,包括蓝牙,红外线,USB设备,光驱设备,PCMCIA卡,调制解调器,打印机,串口与并口,软驱,智能卡阅读器,1394设备,扫描仪,磁带,网络适配器,有bug联系qq:284582241-Filter driver to disable PC-devices, including Bluetooth, infrared, USB devices, optical devices, PCMCIA cards, modems, printers, serial and p
Windows_2000_XP_WDM_Driver_Development
- 本书主要介绍了用DriverStudio 3.1开发工具开发Windows 2000/XP下的WDM设备驱动程序的原理及编程方法。本书详细介绍了WDM基本程序框架和编程,IRP的基本概念及编程,WDM和应用程序之间的通信、即插即用、电源管理、WMI的编程技术,IRP串行处理、过滤器驱动程序,WDM访问硬件设备、处理硬件中断、实现DMA操作的编程技术,以及大量的基本编程技术,还有USB接口和PCI接口设备驱动程序WDM的开发。 本书附有20个典型的编程实例,便于读者学习和掌握。 本书是一本
210511109
- 键盘过滤驱动,支持PS2和USB,还可以卸载-keyboard filter driver
filter-driver-of-usb-disk
- filter driver of usb disk
ariad
- ARIAD is a windows filter driver which can stop usb devices automatically opening certain files, for example the autorun.inf.
FiltUSB
- USB过滤驱动,精简版,过滤U盘实现各种U盘驱动的过滤和作用的改善-USB filter driver, concise edition, filter U plate implementation of U disk drive filter and the improvement of the role
AFilterDriverc
- 实现对文件系统访问的完全控制只有通过过滤驱动技术。介绍了Windows NT 文件系统驱动和过滤驱动原理理、过滤驱动的几种用途和如何加载一个过滤驱动,设计并实现了一个控制USB 设备的过滤驱动实例。 已通过测试。 -Complete control of the file system access only through the filter driver. Several uses of the Windows NT file system driver and filter driv
DkURBMon2
- usb过滤驱动源码,usbstfi.c dkurbmon2-usb filter driver
usb-stor-filter
- 一个简单的U盘过滤驱动程序,使U盘变成一个只读存储器。针对本机当前用户对U盘进行读写控制。可以令U盘处于只读状态。监控用户对文件系统的操作。-A simple U disk filter driver U disk into a read-only memory. U disk read and write control for the current user of the machine. U disk is read-only status. Monitoring of user ope
USB
- usb驱动常用知识、技能总结,并附上了USB2.0文档,便于查看。详细举例、分析了USB鼠标过滤驱动的实现方式。-usb drive common knowledge, skills summary, along with a USB2.0 documents for easy viewing. Details For example, analysis of the USB mouse filter driver implementation.
8549057USBFilter1
- usb过滤驱动WDM(和KDM)是分层的,在构造设备栈时,IO管理器可以使一个设备对象附加到另外一个初始驱动程序创建的设备对象上。与初始设备对象相关的驱动程序决定的IRP,也将被发送到附加的设备对象相关的驱动程序上。这个被附加的驱动程序便是过滤驱动程序。过滤驱动可以在设备栈的任何层次中插入。IO管理器发出的IRP将会沿着右图的顺序从上往下传递并返回。因此,我们可以使用过滤驱动程序来检查、修改、完成它接收到的IRP,或者构造自己的IRP。(The USB filter driver WDM (an