阅读:2475回复:3
关于debugprint的安装
我在安装debugprint时,显示找不到硬件信息,请问,我应该怎样处理,请专家指点!谢谢!
|
|
沙发#
发布于:2002-08-19 10:25
斑竹,有没有调试过这本书上最后usb键盘的例子,搞了半天没有搞定,替换了hidusb.sys文件,用自带的exe文件测试,提示”No SP_INTERFACE_DEVICE_DATA available for this GUID instance“ 没有,但你这个错误是驱动程序没有替换成功。 |
|
|
板凳#
发布于:2002-08-16 22:49
斑竹,有没有调试过这本书上最后usb键盘的例子,搞了半天没有搞定,替换了hidusb.sys文件,用自带的exe文件测试,提示”No SP_INTERFACE_DEVICE_DATA available for this GUID instance“
怎么回事? |
|
地板#
发布于:2002-08-16 08:43
要改一改,以下是修改之后的:
; DebugPrint.Inf - install information file ; Copyright ?1998,1999 Chris Cant, PHD Computer Consultants Ltd [Version] Signature=\"$Chicago$\" Class=Unknown Provider=%PHD% DriverVer=05/19/1999,1.0.3.0 [Manufacturer] %PHD% = DebugPrint [DebugPrint] %DebugPrint%=DebugPrint.Install, *phdcc\\DebugPrint [DestinationDirs] DebugPrint.Files.Driver=10,System32\\Drivers DebugPrint.Files.Driver.NTx86=10,System32\\Drivers [SourceDisksNames] 1=\"PHD DebugPrint Driver disk\",,, [SourceDisksFiles] DebugPrt.sys=1,obj\\i386\\free [SourceDisksFiles.x86] DebugPrt.sys=1,objfre\\i386 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Windows 98 [DebugPrint.Install] CopyFiles=DebugPrint.Files.Driver AddReg=DebugPrint.AddReg [DebugPrint.AddReg] HKR,,DevLoader,,*ntkern HKR,,NTMPDriver,,DebugPrt.sys [DebugPrint.Files.Driver] DebugPrt.sys ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Windows 2000 [DebugPrint.Install.NTx86] CopyFiles=DebugPrint.Files.Driver.NTx86 ProfileItems=DebugPrintMonitor [DebugPrint.Files.Driver.NTx86] DebugPrt.sys,,,%COPYFLG_NOSKIP% ;[DebugPrint.Install.NTx86.Services] ;AddService = DebugPrt, %SPSVCINST_ASSOCSERVICE%, DebugPrint.Service [DebugPrint.Service] DisplayName = %DebugPrint.ServiceName% ServiceType = %SERVICE_KERNEL_DRIVER% StartType = %SERVICE_DEMAND_START% ErrorControl = %SERVICE_ERROR_NORMAL% ServiceBinary = %10%\\System32\\Drivers\\DebugPrt.sys ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Install DebugPrint Monitor Start Menu link (W2000 only) [DebugPrintMonitor] Name=DebugPrintMonitor,FLG_PROFITEM_CURRENTUSER CmdLine=01,..\\exe\\Release,DebugPrintMonitor.exe ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Strings [Strings] PHD=\"PHD Computer Consultants Ltd\" DebugPrint=\"DebugPrint driver debugging tool\" DebugPrint.ServiceName=\"DebugPrint Driver\" SPSVCINST_ASSOCSERVICE=0x00000002 ; Driver service is associated with device being installed COPYFLG_NOSKIP=2 ; Do not allow user to skip file SERVICE_KERNEL_DRIVER=1 SERVICE_AUTO_START=2 SERVICE_DEMAND_START=3 SERVICE_ERROR_NORMAL=1 |
|
|