home *** CD-ROM | disk | FTP | other *** search
/ ftp.networkinstruments.com / 2015-02-04.ftp.networkinstruments.com.tar / ftp.networkinstruments.com / pub / demos / ObserverSetup.exe / Win64 / Drivers / NiFr1SD600.INF < prev    next >
Windows Setup INFormation  |  2013-01-15  |  3KB  |  114 lines

  1. ;; NiFr1SD600.inf
  2.  
  3. ;; *********  PLEASE READ ***********
  4. ;; The wizard cannot create exact INF files for all buses and device types.
  5. ;; You may have to make changes to this file in order to get your device to
  6. ;; install. In particular, hardware IDs and logical configurations require
  7. ;; intervention.
  8. ;;
  9. ;; The Win2K DDK documentation contains an excellent INF reference.
  10.  
  11. ;--------- Version Section ---------------------------------------------------
  12.  
  13. [Version]
  14. Signature="$Windows NT$"
  15. Provider=%ProviderName%
  16.  
  17. ; If device fits one of the standard classes, use the name and GUID here,
  18. ; otherwise create your own device class and GUID as this example shows.
  19.  
  20. Class=NewDeviceClass
  21. ClassGUID={ff646f80-8def-11d2-9449-00105a075f6b}
  22. DriverVer=12/05/2012,16.0.0000
  23.  
  24. ;--------- SourceDiskNames and SourceDiskFiles Section -----------------------
  25.  
  26. ; These sections identify source disks and files for installation.  They are
  27. ; shown here as an example, but commented out.
  28.  
  29. ;[SourceDisksNames]
  30. ;1 = "Install Disk",Disk1,,
  31.  
  32. ;[SourceDisksFiles]
  33. ;NiFr1SD600.sys = 1,,
  34.  
  35. ;--------- ClassInstall/ClassInstall32 Section -------------------------------
  36.  
  37. ; Not necessary if using a standard class
  38.  
  39. ; NT Style
  40. [ClassInstall32]
  41. Addreg=Class_AddReg
  42.  
  43. [Class_AddReg]
  44. HKR,,,,%DeviceClassName%
  45. HKR,,Icon,,"-5"
  46.  
  47. ;--------- DestinationDirs Section -------------------------------------------
  48.  
  49. [DestinationDirs]
  50. NiFr1SD600_Files_Driver = 10,System32\Drivers
  51.  
  52. ;--------- Manufacturer and Models Sections ----------------------------------
  53.  
  54. [Manufacturer]
  55. %MfgName%=Mfg0,NTx86,NTamd64
  56.  
  57. [Mfg0.NTx86]
  58.  
  59. ; PCI hardware IDs use the form
  60. ;   PCI\VEN_aaaa&DEV_bbbb&SUBSYS_cccccccc&REV_dd
  61. ;
  62. %DeviceDesc%=NiFr1SD600_DDI, PCI\VEN_11F8&DEV_7367
  63. ;&SUBSYS_00000000&REV_00
  64.  
  65. [Mfg0.NTamd64]
  66. %DeviceDesc%=NiFr1SD600_DDI, PCI\VEN_11F8&DEV_7367
  67.  
  68.  
  69. ;---------- DDInstall Sections -----------------------------------------------
  70. ; --------- Windows NT -----------------
  71.  
  72. [NiFr1SD600_DDI.NTx86]
  73. CopyFiles=NiFr1SD600_Files_Driver
  74. AddReg=NiFr1SD600_NT_AddReg
  75. Reboot
  76.  
  77. [NiFr1SD600_DDI.NTx86.Services]
  78. Addservice = NiFr1SD600, 0x00000002, NiFr1SD600_AddService
  79.  
  80. [NiFr1SD600_DDI.NTamd64]
  81. CopyFiles=NiFr1SD600_Files_Driver
  82. AddReg=NiFr1SD600_NT_AddReg
  83. Reboot
  84.  
  85. [NiFr1SD600_DDI.NTamd64.Services]
  86. Addservice = NiFr1SD600, 0x00000002, NiFr1SD600_AddService
  87.  
  88.  
  89. [NiFr1SD600_AddService]
  90. DisplayName    = %SvcDesc%
  91. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  92. StartType      = 3                  ; SERVICE_DEMAND_START
  93. ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
  94. ServiceBinary  = %10%\System32\Drivers\NiFr1SD600.sys
  95.  
  96. [NiFr1SD600_NT_AddReg]
  97. HKLM, "System\CurrentControlSet\Services\NiFr1SD600\Parameters",\
  98.     "BreakOnEntry", 0x00010001, 0
  99.  
  100.  
  101. ; --------- Files (common) -------------
  102.  
  103. [NiFr1SD600_Files_Driver]
  104. NiFr1SD600.sys
  105.  
  106. ;--------- Strings Section ---------------------------------------------------
  107.  
  108. [Strings]
  109. ProviderName="Network Instruments, LLC"
  110. MfgName="Network Instruments, LLC"
  111. DeviceDesc="T1/E1 WAN Analyzer (Serial/Digital-600)"
  112. DeviceClassName="NI Protocol Analyzers"
  113. SvcDesc="T1/E1 WAN Analyzer (Serial/Digital-600)"
  114.