Welcome![Sign In][Sign Up]
Location:
Search - sys.rar

Search list

[Communicationusb.rar

Description: usb2.0 驱动; 包括SYS目录
Platform: | Size: 202222 | Author: | Hits:

[SourceCode驱动开发

Description: 驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Platform: | Size: 64512 | Author: cdliqu@163.com | Hits:

[Game Server Simulator石器时代Linux服务端

Description: 7.5的石器时代服务端,以下是架设说明 1.这个包中有两个小包,一个是saserver.tar.gz,这个是已经配置好的直接下下来就可运行的完整服务器端,一个是tool.rar,里面是登陆器和附带的一个内码转换的小工具,因为数据库是繁体的,所以要用这个工具转换。具体方法下面会说。 2.本服务器端要求架设的人有一定Linux基础,如果有看不懂的地方建议先补习一下Linux基本操作。 3.先将saserver.tar.gz拷到linux系统下,然后解压。(一定要在Linux下解压,在windows下解压的话用不了不怪我) 4.在Linux系统下面,进入刚才解压出来的saserver目录,然后在进入saac目录,输入./saac命令(主意下面所有指令都需要root权限!)。等运行稳定,即出现: start loop xxxxxxDeadline 2005xxxxx 表示程序已经启动完全。 5.重新开个console,还是在saserver目录的saac目录下面,输入./acwk -a localhost -c 123,等到出现connect ac..就表示启动完了 6.再开一个console,在saserver目录的gmsv目录下面,输入./gmsv,等待出现: Player=0 PM:0 B:0 Sys:.............的时候,表示服务器已经完全启动完毕。 7.程序的启动顺序千万不能变! 8.运行中可能遇到的错误,在运行./saac的时候,如果出现:cannot init tcpstruct错误,一般来说是由于服务器瞬间负载过高造成的,只要反复尝试,直到运行成功即可。也有可能是机器的内存或者swap太小。 在运行./gmsv中也可能出现:Received signal:xx,或者killed或者“被*”错误,都跟saac一个原因,处理方法和处理saac的一样 9.到目前位置服务器已经就位了,可以连接了,请将tool.rar包里面的sa_7505.exe和servlist.txt拷贝到石器客户端,然后修改servlist.txt里面0=测试服务器1,1192.168.1.100,9065中的1192.168.1.100为“1你的IP地址”(第一个1不能去),然后保存,这样你的客户端就能连接上服务器了。
Platform: | Size: 16584032 | Author: mmmwkmw | Hits:

[Driver Develophidgame

Description: 一个简单实现windows游戏杆的驱动示例-hidgame-a simple realization windows joysticks driven examples- hidgame
Platform: | Size: 166912 | Author: xixuanlee | Hits:

[Driver DevelopFU_Rootkit

Description: windows rootkit,可以列举出内核驱动程序以及就可以把自己的.sys隐藏起来-windows rootkit. can be cited and kernel drivers will be able to own. sys hidden
Platform: | Size: 2272256 | Author: 柳杨 | Hits:

[Internet-NetworkSHAREdISK

Description: 虚拟磁盘共享网络盘客户端,使用FDISK.SYS函数功能-virtual disk sharing network client sites, the use of function function FDISK.SYS
Platform: | Size: 21504 | Author: 郑无极 | Hits:

[Delphi VCLDeviceManager

Description: 设备管理器。就像Window的设备管理器一样。源码来自网络,本人整理而已。-Device Manager. Like Window
Platform: | Size: 281600 | Author: HJ | Hits:

[USB developWindows_USB

Description: 用于Windows操作系统的通用USB 其中涉及到CyUSB.sys,CyAPI.h,CyAPI.lib的功能及用法。-Windows operating system for general-purpose USB involving CyUSB.sys, CyAPI.h, CyAPI.lib function and usage.
Platform: | Size: 5120 | Author: abc | Hits:

[Windows Developsys

Description: 一个可以用的驱动级加解密源码,采用最新的minifilter框架结构.实现了对word等文件的加解密-One can use the drive-level encryption and decryption source, using the latest framework minifilter. Realize the word, such as encryption and decryption of documents
Platform: | Size: 1691648 | Author: wangf | Hits:

[ARM-PowerPC-ColdFire-MIPSGIVEIO

Description: 三星公司官方 GIVEIO.SYS源代码下载。 In windows NT/2000/XP, any application can’t access the I/O such as the parallel port. So, GIVEIO.SYS enables SJF.exe to access the parallel port without any memory fault. In windows 95/98, GIVEIO.SYS isn’t needed. -Samsung GIVEIO.SYS official source code download. In windows NT/2000/XP, any application can t access the I/O such as the parallel port. So, GIVEIO.SYS enablesSJF.exe to access the parallel port without any memory fault. In windows 95/98, GIVEIO.SYS isn t needed.
Platform: | Size: 94208 | Author: 琢光 | Hits:

[Driver DevelopFileFilter

Description: U盘过滤驱动程序,让U盘成为一个只读存储器。在DISK.sys和USBSTOR.sys驱动之间建立一个过滤驱动-U disk filter driver, so that U disk into a read-only memory. Disk.sys USBSTOR.sys drive in between and a filter driver
Platform: | Size: 722944 | Author: | Hits:

[Firewall-SecurityDlgLoader

Description: 一个自动加载和卸载驱动sys文件的工具,可以辅助驱动的开发。-Automatic loading and unloading a driver sys file tools, can help drive development.
Platform: | Size: 23552 | Author: captain83 | Hits:

[Driver Developusbstor.sys

Description: usbstor.sys.rar 5238869-usbstor.sys.rar 5238869
Platform: | Size: 12288 | Author: wangxuxiong | Hits:

[Audio programcmuda.sys

Description: cmuda.sys.rar 5238869-cmuda.sys.rar 5238869
Platform: | Size: 290816 | Author: wangxuxiong | Hits:

[Windows Develophidclass

Description: 显卡驱动相关文件hidclass.sys下载 当运行程序系统提示“找不到hidclass.sys ”,“没有找到hidclass.sys”时,www.neemou.cn为您提供hidclass.sys下载,下载后的文件为rar格式,需要使用winRAR解压缩。hidclass.sys放在哪里呢,通常位置是:c:\windows\system32\目录下。 -Related Documents hidclass.sys download video drivers     When prompted to run the program "can not find hidclass.sys", "not found hidclass.sys" when, www.neemou.cn offers hidclass.sys download, download the file to rar format, you need winRAR extract. hidclass.sys on where it is usually position is: c: \ windows \ system32 \ directory.
Platform: | Size: 20480 | Author: 钟伟丹 | Hits:

[OS programMS08-025-win32k.sys

Description: MS08-025 win32k.sys在开发木马的朋友会用到-MS08-025 win32k.sys in the development of Trojan s friends will be used
Platform: | Size: 30720 | Author: zk | Hits:

[Consoletrojan.rar

Description: 能获取对方本机的系统信息以及切换鼠标按键的功能,access other s information of sys
Platform: | Size: 3447808 | Author: yjc | Hits:

[Tab ControlSys.rar

Description: vc PropertyGrid vc PropertyGrid,vc PropertyGrid vc PropertyGrid
Platform: | Size: 706560 | Author: 是的佛 | Hits:

[androidBusLine-Sys

Description: 公交路线查询应用系统,可根据起止地点、公交线路名称,查询公交信息,根目录下的BusLine文件为建库操作,BusLine.rar为整个项目,sqliteadmin为保存查询结果的数据库。-Bus routes Query application system, according to starting and ending location, name of bus lines, public information inquiries, BusLine file in the root directory for the construction of library operations, BusLine.rar for the entire project, sqliteadmin to save the results of a query.
Platform: | Size: 4167680 | Author: 金钰涵 | Hits:

[OthernrCommLib.Pro.v.9.44.D4-XE10.1.Stp.Crk

Description: 这是带源码安装版,有源码,有注册号,完美支持 Delphi 10.2 Tokyo,nrComm Lib 是在由Deepsoftware开发类别 Miscellaneous Shareware 软件。(nrComm Lib provides some tools for performing the serial communications tasks in Delphi/CBuilder development. It has ready solutions for many communication tasks and supports working with different types of devices: * RS232, serial ports (native and virtual), USB2RS232 adapters etc.; * Telephone API (TAPI) devices (data and voice modems); * Text to speech conversion with voice modem output; * direct access to LPT port; * barcode readers; * Bluetooth connections and devices; * GSM (sms send receive, access to phonebook etc.); * ZModem, Kermit file transfer protocol; * HID (Human Interface Devices) devices; * Terminal control with VT100 support; * USB - device detection, WinUSB or lightweight nrUsb.SYS installation, I/O operations; * ready solution for implementation any data packet protocol TnrDataProcessor component * 32bit and 64bit are full support. All needed drivers are signed and can be installed on x64 Windows;)
Platform: | Size: 21935104 | Author: kongkongkong | Hits:
« 12 »

CodeBus www.codebus.net