usb2vcom.inf
上传用户:boyan07
上传日期:2022-06-12
资源大小:2293k
文件大小:2k
源码类别:

通讯编程

开发平台:

Others

  1. ;*******************************************************************
  2. ; Installation file (.inf) for the USB to Virtual Serial ports device.
  3. ;
  4. ; (c) Copyright 2004 Ark Pioneer Microelectronics Ltd. 
  5. ;
  6. ;
  7. ; 27-May-2004
  8. ;*******************************************************************
  9. [Version]
  10. Signature="$Windows NT$"
  11. Provider=%ProviderName%
  12. Class=Ports
  13. ClassGUID={4d36e978-e325-11ce-bfc1-08002be10318}
  14. ;CatalogFile=usb2vcom.cat
  15. DriverVer=03/31/2006,2.0.0.6
  16. ;--------- DestinationDirs Section -------------------------------------------
  17. [DestinationDirs]
  18. usb2vcom_Files_Driver = 10,System32Drivers
  19. usb2vcom_Files_Inf = 10, INF
  20. ;--------- Manufacturer and Models Sections ----------------------------------
  21. [Manufacturer]
  22. %MfgName%=Mfg0
  23. [Mfg0]
  24. %DeviceDesc%=usb2vcom, USBVID_6547&PID_0232
  25. ;---------- DDInstall Sections -----------------------------------------------
  26. ; --------- Windows NT -----------------
  27. [usb2vcom.NT]
  28. CopyFiles=usb2vcom_Files_Driver, usb2vcom_Files_Inf
  29. AddReg=usb2vcom.NT.AddReg
  30. [usb2vcom.NT.HW]
  31. AddReg=usb2vcom.NT.HW.AddReg
  32. [usb2vcom.NT.AddReg]
  33. HKR,,DevLoader,,*ntkern
  34. HKR,,NTMPDriver,,usb2vcom.sys
  35. ;HKR,,"UpperFilters",0x00010000,"serenum"
  36. HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
  37. [usb2vcom.NT.HW.AddReg]
  38. HKR,,"UpperFilters",0x00010000,"serenum"
  39. [usb2vcom.NT.Services]
  40. Addservice = usb2vcom, 0x00000002, usb2vcom_AddService
  41. AddService = Serenum,,Serenum_AddService
  42. [usb2vcom_AddService]
  43. DisplayName    = %SvcDesc%
  44. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  45. StartType      = 3                  ; SERVICE_DEMAND_START
  46. ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
  47. ServiceBinary  = %10%System32Driversusb2vcom.sys
  48. LoadOrderGroup = Base
  49. [Serenum_AddService]
  50. DisplayName    = %Serenum.SvcDesc%
  51. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  52. StartType      = 3                  ; SERVICE_DEMAND_START
  53. ErrorControl   = 1                  ; SERVICE_ERROR_IGNORE
  54. ServiceBinary  = %12%serenum.sys
  55. ;LoadOrderGroup = Pointer Port
  56. LoadOrderGroup = PNP Filter
  57. ; --------- Files (common) -------------
  58. [usb2vcom_Files_Driver]
  59. usb2vcom.sys
  60. [usb2vcom_Files_Inf]
  61. usb2vcom.inf
  62. ;--------- Strings Section ---------------------------------------------------
  63. [Strings]
  64. ProviderName="Ark Pioneer Microelectronics Ltd."
  65. MfgName="ArkMicro"
  66. DeviceDesc="ArkMicro USB to Serial Ports"
  67. SvcDesc="USB to Serial Bridge Controller"
  68. Serenum.SvcDesc="Serenum Filter Driver"